summaryrefslogtreecommitdiffstats
path: root/src/General.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/General.h')
-rw-r--r--src/General.h7
1 files changed, 3 insertions, 4 deletions
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); }
};