mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-10 23:01:59 +00:00
- I guess I should make sure things compile before I commit them.
SVN r3537 (trunk)
This commit is contained in:
parent
9ea7eab7e0
commit
0a8ffaecd9
1 changed files with 1 additions and 1 deletions
|
@ -151,7 +151,7 @@ void P_InitParticles ()
|
|||
NumParticles = r_maxparticles;
|
||||
|
||||
// This should be good, but eh...
|
||||
NumParticles = clamp(NumParticles, 100, 65535);
|
||||
NumParticles = clamp<WORD>(NumParticles, 100, 65535);
|
||||
|
||||
P_DeinitParticles();
|
||||
Particles = new particle_t[NumParticles];
|
||||
|
|
Loading…
Reference in a new issue