summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/random.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/random.cc')
-rw-r--r--crawl-ref/source/random.cc11
1 files changed, 10 insertions, 1 deletions
diff --git a/crawl-ref/source/random.cc b/crawl-ref/source/random.cc
index fad30322de..758f5ea599 100644
--- a/crawl-ref/source/random.cc
+++ b/crawl-ref/source/random.cc
@@ -95,7 +95,16 @@ int random2(int max)
if (max <= 1)
return (0);
- return (static_cast<int>(random_int() / (0xFFFFFFFFUL / max + 1)));
+ unsigned long partn = 0xFFFFFFFFUL / max;
+
+ while (true)
+ {
+ unsigned long bits = random_int();
+ unsigned long val = bits / partn;
+
+ if (val < (unsigned long)(max))
+ return val;
+ }
}
bool coinflip(void)