]> git.mxchange.org Git - quix0rs-blobwars.git/blobdiff - src/defs.h
Do not use DESTDIR in PREFIX, but only in the install target.
[quix0rs-blobwars.git] / src / defs.h
old mode 100755 (executable)
new mode 100644 (file)
index a18a110..0664e39
@@ -1,5 +1,5 @@
 /*
-Copyright (C) 2004 Parallel Realities
+Copyright (C) 2004-2010 Parallel Realities
 
 This program is free software; you can redistribute it and/or
 modify it under the terms of the GNU General Public License
@@ -372,15 +372,16 @@ enum {
        PAK_SOUND,
        PAK_MUSIC,
        PAK_DATA,
-       PAK_FONT
+       PAK_FONT,
+       PAK_TAGS
 };
 
 /* ############# 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