This commit is contained in:
Yaakov 2013-07-05 12:21:24 -07:00
commit 7ab550d043
3 changed files with 22 additions and 0 deletions

14
.gitignore vendored
View file

@ -14,14 +14,28 @@
*.lastbuildstate
vc100.pdb
*.idb
ipch
*.sdf
*.opensdf
# Make
obj_*_osx32
obj_*_linux32
# Other intermediates
generated_proto
# Specific Source build products
client.pdb
client.dll
client.lib
client.dylib
client.so
server.pdb
server.dll
server.lib
server.dylib
server.so
# files generated by running a mod
config.cfg

View file

@ -253,9 +253,13 @@ DBG_INTERFACE struct SDL_Window * GetAssertDialogParent();
if ( ret == SPEW_DEBUGGER) \
{ \
if ( !ShouldUseNewAssertDialog() || DoNewAssertDialog( __TFILE__, __LINE__, _msg ) ) \
{ \
DebuggerBreak(); \
} \
if ( _bFatal ) \
{ \
_ExitOnFatalAssert( __TFILE__, __LINE__ ); \
} \
} \
} \
} while (0)

View file

@ -253,9 +253,13 @@ DBG_INTERFACE struct SDL_Window * GetAssertDialogParent();
if ( ret == SPEW_DEBUGGER) \
{ \
if ( !ShouldUseNewAssertDialog() || DoNewAssertDialog( __TFILE__, __LINE__, _msg ) ) \
{ \
DebuggerBreak(); \
} \
if ( _bFatal ) \
{ \
_ExitOnFatalAssert( __TFILE__, __LINE__ ); \
} \
} \
} \
} while (0)