mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +00:00
[sw,sw32] Ensure the particle system is initialized
This fixes the missing particles (because mtwist_rand was returning 0).
This commit is contained in:
parent
ce4bb1d56c
commit
aacd2575d2
2 changed files with 2 additions and 0 deletions
|
@ -131,6 +131,7 @@ sw_R_Init (void)
|
|||
#endif
|
||||
|
||||
R_InitTurb ();
|
||||
R_InitParticles ();
|
||||
|
||||
Cmd_AddCommand ("timerefresh", R_TimeRefresh_f, "Tests the current "
|
||||
"refresh rate for the current location");
|
||||
|
|
|
@ -151,6 +151,7 @@ sw32_R_Init (void)
|
|||
sw32_Draw_Init ();
|
||||
SCR_Init ();
|
||||
sw32_R_InitTurb ();
|
||||
sw32_R_InitParticles ();
|
||||
|
||||
Cmd_AddCommand ("timerefresh", sw32_R_TimeRefresh_f, "Tests the current "
|
||||
"refresh rate for the current location");
|
||||
|
|
Loading…
Reference in a new issue