From 0a36d49d2cd4346dc99a52155e2599917c1e6a42 Mon Sep 17 00:00:00 2001 From: aap Date: Thu, 30 May 2019 00:47:33 +0200 Subject: clean up --- src/General.h | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'src/General.h') diff --git a/src/General.h b/src/General.h index d67b1ff0..aa52bf4d 100644 --- a/src/General.h +++ b/src/General.h @@ -1,5 +1,4 @@ - - +#pragma once class CGeneral { @@ -46,8 +45,8 @@ public: { return myrand() & 0xFFFF; } // Probably don't want to ever reach high static float GetRandomNumberInRange(float low, float high) - { return low + (high - low)*(GetRandomNumber()/float(MY_RAND_MAX + 1)); } + { return low + (high - low)*(GetRandomNumber()/65536.0f); } static Int32 GetRandomNumberInRange(Int32 low, Int32 high) - { return low + (high - low)*(GetRandomNumber()/float(MY_RAND_MAX + 1)); } + { return low + (high - low)*(GetRandomNumber()/65536.0f); } }; -- cgit v1.2.3