From 2141ca23687b538ad5c537fc468b61bfc3b01bc2 Mon Sep 17 00:00:00 2001 From: frosch Date: Fri, 16 Apr 2010 21:21:54 +0000 Subject: (svn r19643) -Fix (r19120): Industry generation failed for large maps and lots of industry types. --- src/core/random_func.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'src/core/random_func.cpp') diff --git a/src/core/random_func.cpp b/src/core/random_func.cpp index dfdf9c869..588bcb7b2 100644 --- a/src/core/random_func.cpp +++ b/src/core/random_func.cpp @@ -57,6 +57,7 @@ uint32 DoRandom(int line, const char *file) uint DoRandomRange(uint max, int line, const char *file) { + assert(max <= UINT16_MAX); return GB(DoRandom(line, file), 0, 16) * max >> 16; } #endif /* RANDOM_DEBUG */ -- cgit v1.2.3-54-g00ecf