summaryrefslogtreecommitdiff
path: root/common/usuals.h
diff options
context:
space:
mode:
Diffstat (limited to 'common/usuals.h')
-rw-r--r--common/usuals.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/usuals.h b/common/usuals.h
index 48d372f..99951d7 100644
--- a/common/usuals.h
+++ b/common/usuals.h
@@ -66,9 +66,9 @@
#ifdef _DEBUG
#include "assert.h"
- #define ASSERT assert
+ #define ASSERT(x) assert(x)
#else
- #define ASSERT
+ #define ASSERT(x)
#endif
#define KL(s) ((sizeof(s) - 1) / sizeof(char))