From db3b1228bfad7fb42ce708dc93db21d840b07577 Mon Sep 17 00:00:00 2001 From: tron Date: Mon, 3 Oct 2005 21:20:01 +0000 Subject: (svn r3010) Get rid of quite some dubious casts, either by using GB(), proper types or just removing them --- misc.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'misc.c') diff --git a/misc.c b/misc.c index 90fd7228e..9ac16b00f 100644 --- a/misc.c +++ b/misc.c @@ -51,12 +51,12 @@ uint32 t; #if defined(RANDOM_DEBUG) && !defined(MERSENNE_TWISTER) uint DoRandomRange(uint max, int line, const char *file) { - return (uint16)DoRandom(line, file) * max >> 16; + return GB(DoRandom(line, file), 0, 16) * max >> 16; } #else uint RandomRange(uint max) { - return (uint16)Random() * max >> 16; + return GB(Random(), 0, 16) * max >> 16; } #endif @@ -71,7 +71,7 @@ uint32 InteractiveRandom(void) uint InteractiveRandomRange(uint max) { - return (uint16)InteractiveRandom() * max >> 16; + return GB(InteractiveRandom(), 0, 16) * max >> 16; } void SetDate(uint date) -- cgit v1.2.3-54-g00ecf