fix MASTER crashes

This commit is contained in:
withmorten 2021-02-04 23:41:10 +01:00
parent 7aaaaa953b
commit bf299e5c17
1 changed files with 1 additions and 1 deletions

View File

@ -354,7 +354,7 @@ __inline__ void TRACE(char *f, ...) { } // this is re3 only, and so the function
#ifndef MASTER
#define assert(_Expression) (void)( (!!(_Expression)) || (re3_assert(#_Expression, __FILE__, __LINE__, __FUNCTION__), 0) )
#else
#define assert(_Expression)
#define assert(_Expression) (_Expression)
#endif
#define ASSERT assert