diff options
author | withmorten <morten.with@gmail.com> | 2021-02-04 23:41:10 +0100 |
---|---|---|
committer | withmorten <morten.with@gmail.com> | 2021-02-04 23:41:10 +0100 |
commit | bf299e5c17387751dcd6ab0af0b7cea85bca33cf (patch) | |
tree | c158c5f2f1a3b1cda3d82d8bfba249c5cc8a920a | |
parent | CHud::Draw fix (diff) | |
download | re3-bf299e5c17387751dcd6ab0af0b7cea85bca33cf.tar re3-bf299e5c17387751dcd6ab0af0b7cea85bca33cf.tar.gz re3-bf299e5c17387751dcd6ab0af0b7cea85bca33cf.tar.bz2 re3-bf299e5c17387751dcd6ab0af0b7cea85bca33cf.tar.lz re3-bf299e5c17387751dcd6ab0af0b7cea85bca33cf.tar.xz re3-bf299e5c17387751dcd6ab0af0b7cea85bca33cf.tar.zst re3-bf299e5c17387751dcd6ab0af0b7cea85bca33cf.zip |
-rw-r--r-- | src/core/common.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/common.h b/src/core/common.h index 33d8910d..a8f19158 100644 --- a/src/core/common.h +++ b/src/core/common.h @@ -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 |