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, 2 insertions, 9 deletions
diff --git a/src/FastRandom.cpp b/src/FastRandom.cpp
index 052d976da..42bf5f3f9 100644
--- a/src/FastRandom.cpp
+++ b/src/FastRandom.cpp
@@ -90,17 +90,10 @@ int cFastRandom::m_SeedCounter = 0;
-cFastRandom::cFastRandom(int a_Seed) :
+cFastRandom::cFastRandom(void) :
+ m_Seed(m_SeedCounter++),
m_Counter(0)
{
- if (a_Seed == -1)
- {
- m_Seed = m_SeedCounter++;
- }
- else
- {
- m_Seed = a_Seed;
- }
}