summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/items.cc
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/items.cc
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/items.cc')
-rw-r--r--crawl-ref/source/items.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/items.cc b/crawl-ref/source/items.cc
index 2e0d7a7015..e5e52e82fd 100644
--- a/crawl-ref/source/items.cc
+++ b/crawl-ref/source/items.cc
@@ -410,7 +410,7 @@ void unlink_item( int dest )
}
}
-#if DEBUG
+#ifdef DEBUG
// Okay, the sane ways are gone... let's warn the player:
mprf(MSGCH_ERROR, "BUG WARNING: Problems unlinking item '%s', (%d, %d)!!!",
mitm[dest].name(DESC_PLAIN).c_str(),