1
0
Fork 0

Initalize counter in fastrandom

Fixes CID 43622
This commit is contained in:
Tycho 2014-04-27 13:15:19 -07:00
parent a2b1fa6520
commit 71c51783f3
1 changed files with 2 additions and 1 deletions

View File

@ -91,7 +91,8 @@ int cFastRandom::m_SeedCounter = 0;
cFastRandom::cFastRandom(void) :
m_Seed(m_SeedCounter++)
m_Seed(m_SeedCounter++),
m_Counter(0)
{
}