summaryrefslogtreecommitdiffstats
path: root/src/core/General.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/core/General.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/core/General.h b/src/core/General.h
index 52850794..4cc0ebf8 100644
--- a/src/core/General.h
+++ b/src/core/General.h
@@ -160,10 +160,6 @@ public:
static int32 GetRandomNumberInRange(int32 low, int32 high)
{ return low + (high - low)*(GetRandomNumber()/float(MYRAND_MAX + 1)); }
- // Returns inclusive value in the specified range
- static int32 GetRandomNumberInRangeInc(int32 low, int32 high)
- { return GetRandomNumberInRange(low - 1, high + 1); }
-
static void SetRandomSeed(int32 seed)
{ mysrand(seed); }
};