summaryrefslogtreecommitdiffstats
path: root/src/FastRandom.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/FastRandom.cpp')
-rw-r--r--src/FastRandom.cpp11
1 files changed, 9 insertions, 2 deletions
diff --git a/src/FastRandom.cpp b/src/FastRandom.cpp
index 42bf5f3f9..052d976da 100644
--- a/src/FastRandom.cpp
+++ b/src/FastRandom.cpp
@@ -90,10 +90,17 @@ int cFastRandom::m_SeedCounter = 0;
-cFastRandom::cFastRandom(void) :
- m_Seed(m_SeedCounter++),
+cFastRandom::cFastRandom(int a_Seed) :
m_Counter(0)
{
+ if (a_Seed == -1)
+ {
+ m_Seed = m_SeedCounter++;
+ }
+ else
+ {
+ m_Seed = a_Seed;
+ }
}