mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-01-11 18:50:46 +00:00
Fix procedural fire effect seed
This commit is contained in:
parent
1dbc06bfa0
commit
291d7fd888
1 changed files with 1 additions and 1 deletions
|
@ -308,7 +308,7 @@ void menu_DoPlasma()
|
|||
|
||||
//uint32_t t = time(0) << 16;
|
||||
//uint32_t t2 = time(0) | t;
|
||||
nRandom = (int)totalclock;
|
||||
nRandom = timerGetTicksU64();
|
||||
|
||||
for (int i = 0; i < 5; i++)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue