mirror of
https://github.com/ValveSoftware/source-sdk-2013.git
synced 2025-04-08 11:01:33 +00:00
Merge 3b341669ec
into 3527e2f9f1
This commit is contained in:
commit
7ab550d043
3 changed files with 22 additions and 0 deletions
14
.gitignore
vendored
14
.gitignore
vendored
|
@ -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
|
||||
|
|
|
@ -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)
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue