summaryrefslogtreecommitdiff
path: root/src/game
diff options
context:
space:
mode:
authorBen Millwood <thebenmachine@gmail.com>2009-10-03 11:52:00 +0000
committerTim Angus <tim@ngus.net>2013-01-03 00:15:27 +0000
commit09ceb08b95978feb0a9b737f22ac0f662c7465d6 (patch)
tree08d6f43d9c1ac4dae7a93e7ce02788e57c6e31cb /src/game
parentb872e6e113c5372b9d698fc457fe620b195f5dfd (diff)
* Replace Item_Text_Wrap with a version that actually makes sense
* compiler warning or something
Diffstat (limited to 'src/game')
-rw-r--r--src/game/bg_lib.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/game/bg_lib.h b/src/game/bg_lib.h
index d675cce4..c9ffd65b 100644
--- a/src/game/bg_lib.h
+++ b/src/game/bg_lib.h
@@ -76,6 +76,15 @@ typedef int cmp_t( const void *, const void * );
void qsort( void *a, size_t n, size_t es, cmp_t *cmp );
void srand( unsigned seed );
int rand( void );
+// FIXME: NDEBUG isn't defined for compiling the QVMs
+#ifndef NDEBUG
+#define str2(x) #x
+#define str(x) str2(x)
+#define assert(x) if(!(x)) Com_Error( ERR_DROP, \
+ __FILE__ ":" str(__LINE__) ": assertion `" #x "' failed" );
+#else
+#define assert(x)
+#endif
// String functions
size_t strlen( const char *string );