summaryrefslogtreecommitdiff
path: root/src/core/random_func.hpp
diff options
context:
space:
mode:
authorsmatz <smatz@openttd.org>2008-02-16 00:46:38 +0000
committersmatz <smatz@openttd.org>2008-02-16 00:46:38 +0000
commitb4f58ebae4db322a61d57788af654a7fe60e4672 (patch)
treebbe975e335be297852496faf3521b4182c6a5037 /src/core/random_func.hpp
parent044ca2bbf63f7162cdceaf535957fd1443f80ea4 (diff)
downloadopenttd-b4f58ebae4db322a61d57788af654a7fe60e4672.tar.xz
(svn r12156) -Fix (r11454): Chance16I was now biased towards zero - round to nearest now
Diffstat (limited to 'src/core/random_func.hpp')
-rw-r--r--src/core/random_func.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/random_func.hpp b/src/core/random_func.hpp
index d941f283c..8469af661 100644
--- a/src/core/random_func.hpp
+++ b/src/core/random_func.hpp
@@ -88,7 +88,7 @@ static inline uint32 InteractiveRandomRange(uint16 max) { return _interactive_ra
static inline bool Chance16I(const uint a, const uint b, const uint32 r)
{
assert(b != 0);
- return (uint16)r < (uint16)((a << 16) / b);
+ return (uint16)r < (uint16)(((a << 16) + b / 2) / b);
}
/**