summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/debug.h
diff options
context:
space:
mode:
authorHurcan Solter <hsolter@gmail.com>2011-05-03 04:46:52 +0300
committerAdam Borowski <kilobyte@angband.pl>2011-06-12 23:47:18 +0200
commit3895ae9e2b6ebf992ba259250c8e658ada0fa535 (patch)
treeab0283554d7a0fe86ff02be3e0e58103b88ddb3e /crawl-ref/source/debug.h
parent67de327b0f423f976854d6f47e23ae2aca1b7350 (diff)
downloadcrawl-ref-3895ae9e2b6ebf992ba259250c8e658ada0fa535.tar.gz
crawl-ref-3895ae9e2b6ebf992ba259250c8e658ada0fa535.zip
Fix MSVC compilation.
Diffstat (limited to 'crawl-ref/source/debug.h')
-rw-r--r--crawl-ref/source/debug.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/debug.h b/crawl-ref/source/debug.h
index 577eca5853..8912c17c04 100644
--- a/crawl-ref/source/debug.h
+++ b/crawl-ref/source/debug.h
@@ -20,7 +20,7 @@
// Synch with MSVC.
#ifdef TARGET_COMPILER_VC
-#if _MSC_VER >= 1100 && DEBUG != defined(_DEBUG)
+#if _MSC_VER >= 1100 && defined(DEBUG) != defined(_DEBUG)
#error DEBUG and _DEBUG are out of sync!
#endif
#endif