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.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/crawl-ref/source/stuff.h b/crawl-ref/source/stuff.h
index 996809b4ab..47245e42f2 100644
--- a/crawl-ref/source/stuff.h
+++ b/crawl-ref/source/stuff.h
@@ -214,15 +214,21 @@ int choose_random_weighted(Iterator beg, const Iterator end)
{
ASSERT(beg < end);
+#if DEBUG
+ int times_set = 0;
+#endif
+
int totalweight = 0;
- int count = 0, result = 0, times_set = 0;
+ int count = 0, result = 0;
while ( beg != end )
{
totalweight += *beg;
if ( random2(totalweight) < *beg )
{
result = count;
+#if DEBUG
times_set++;
+#endif
}
++count;
++beg;