summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/AppHdr.h
diff options
context:
space:
mode:
authorSteven Noonan <steven@uplinklabs.net>2009-10-13 03:05:10 -0700
committerSteven Noonan <steven@uplinklabs.net>2009-10-13 06:23:13 -0700
commit997a4469a2022461f5fe011bd7d0843d6dd6c5de (patch)
tree96e1c6a217e1c15852ab651361e8085d0a27e911 /crawl-ref/source/AppHdr.h
parent3f6c3a3969efce77a980fdf7e3c76183bcad2db3 (diff)
downloadcrawl-ref-997a4469a2022461f5fe011bd7d0843d6dd6c5de.tar.gz
crawl-ref-997a4469a2022461f5fe011bd7d0843d6dd6c5de.zip
fix 'DEBUG' macro usage consistency
Sometimes we were doing #if DEBUG and others we were doing #ifdef DEBUG. If we mix both, we have problems: If the DEBUG macro isn't defined, the statement '#if DEBUG' doesn't really make sense logically, because 'DEBUG' has no value. And if we '#define DEBUG 0', then the '#ifdef DEBUG's become true statements. The easiest fix is to swap out the #ifs with #ifdefs. Signed-off-by: Steven Noonan <steven@uplinklabs.net>
Diffstat (limited to 'crawl-ref/source/AppHdr.h')
-rw-r--r--crawl-ref/source/AppHdr.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/AppHdr.h b/crawl-ref/source/AppHdr.h
index 4014edab30..7864d87abe 100644
--- a/crawl-ref/source/AppHdr.h
+++ b/crawl-ref/source/AppHdr.h
@@ -333,7 +333,7 @@
// #define DEBUG 0 // leave this undefined for those lamers who use #ifdef
#endif
-#if DEBUG
+#ifdef DEBUG
#if __MWERKS__
#define MSIPL_DEBUG_MODE
#endif