mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-11 15:22:16 +00:00
Make sure use_staticrng is false if not needed
This commit is contained in:
parent
6183f8125f
commit
104a07d461
1 changed files with 4 additions and 0 deletions
|
@ -2001,7 +2001,11 @@ static void D_DoomInit()
|
||||||
Printf("D_DoomInit: Static RNGseed %d set.\n", rngseed);
|
Printf("D_DoomInit: Static RNGseed %d set.\n", rngseed);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
{
|
||||||
rngseed = I_MakeRNGSeed();
|
rngseed = I_MakeRNGSeed();
|
||||||
|
use_staticrng = false;
|
||||||
|
}
|
||||||
|
|
||||||
FRandom::StaticClearRandom ();
|
FRandom::StaticClearRandom ();
|
||||||
|
|
||||||
Printf ("M_LoadDefaults: Load system defaults.\n");
|
Printf ("M_LoadDefaults: Load system defaults.\n");
|
||||||
|
|
Loading…
Reference in a new issue