diff options
Diffstat (limited to 'src/General.h')
-rw-r--r-- | src/General.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/General.h b/src/General.h index 38737bd5..1dec2d54 100644 --- a/src/General.h +++ b/src/General.h @@ -14,8 +14,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(RAND_MAX + 1)); } + { return low + (high - low)*(GetRandomNumber()/float(MY_RAND_MAX + 1)); } static Int32 GetRandomNumberInRange(Int32 low, Int32 high) - { return low + (high - low)*(GetRandomNumber()/float(RAND_MAX + 1)); } + { return low + (high - low)*(GetRandomNumber()/float(MY_RAND_MAX + 1)); } }; |