mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 10:18:21 +00:00
9 lines
147 B
C
9 lines
147 B
C
|
#include <assert.h>
|
||
|
|
||
|
// So stupid Linux doesn't assert in release
|
||
|
#ifdef _DEBUG
|
||
|
#define RakAssert(x) assert(x);
|
||
|
#else
|
||
|
#define RakAssert(x)
|
||
|
#endif
|