summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/stuff.h
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/stuff.h')
-rw-r--r--crawl-ref/source/stuff.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/stuff.h b/crawl-ref/source/stuff.h
index 84554a47af..0591c07688 100644
--- a/crawl-ref/source/stuff.h
+++ b/crawl-ref/source/stuff.h
@@ -230,7 +230,7 @@ int choose_random_weighted(Iterator beg, const Iterator end)
{
ASSERT(beg < end);
-#if DEBUG
+#ifdef DEBUG
int times_set = 0;
#endif
@@ -242,14 +242,14 @@ int choose_random_weighted(Iterator beg, const Iterator end)
if (random2(totalweight) < *beg)
{
result = count;
-#if DEBUG
+#ifdef DEBUG
times_set++;
#endif
}
++count;
++beg;
}
-#if DEBUG
+#ifdef DEBUG
ASSERT(times_set > 0);
#endif
return result;