]> git.mxchange.org Git - quix0rs-blobwars.git/blobdiff - src/defs.h
Use DEBUG instead of USEPAK to enable debugging code.
[quix0rs-blobwars.git] / src / defs.h
index c245ca7535be36caefafe83b3de334a674fd479c..1758ffbc4c39f8609d11934ce92c3d30a362c869 100644 (file)
@@ -371,10 +371,10 @@ enum {
 
 /* ############# debug ################## */
 
-#if USEPAK
-       #define debug(x) {}
-#else
+#if DEBUG
        #define debug(x) {printf("*** DEBUG: "); printf x;}
+#else
+       #define debug(x) {}
 #endif
 
 #ifndef IGNORE_FLAGTOKEN_ERRORS