Modify sys_directx_assert() to call DebugBreak() instead of abort().

This commit is contained in:
David Capello 2010-12-12 11:36:50 -03:00
parent aacfb515e4
commit 17dea3db8d

View File

@ -335,7 +335,7 @@ static void sys_directx_message(AL_CONST char *msg)
static void sys_directx_assert(AL_CONST char *msg)
{
OutputDebugString(msg); /* thread safe */
abort();
DebugBreak();
}