mirror of
https://github.com/dhewm/dhewm3.git
synced 2024-11-22 20:51:20 +00:00
Fix MSVC non-Release builds (_alloca()/assert() didn't play nice)
This commit is contained in:
parent
85a6b3b067
commit
56b3c46ba8
1 changed files with 2 additions and 1 deletions
|
@ -125,7 +125,8 @@ int IntForSixtets( byte *in );
|
|||
#ifdef _DEBUG
|
||||
void AssertFailed( const char *file, int line, const char *expression );
|
||||
#undef assert
|
||||
#define assert( X ) if ( X ) { } else AssertFailed( __FILE__, __LINE__, #X )
|
||||
// DG: change assert to use ?: so I can use it in _alloca()/_alloca16() (MSVC didn't like if() in there)
|
||||
#define assert( X ) (X) ? 1 : (AssertFailed( __FILE__, __LINE__, #X ), 0)
|
||||
#endif
|
||||
|
||||
class idException {
|
||||
|
|
Loading…
Reference in a new issue