- I guess I should make sure things compile before I commit them.

SVN r3537 (trunk)
This commit is contained in:
Randy Heit 2012-04-08 04:35:39 +00:00
parent 9ea7eab7e0
commit 0a8ffaecd9

View file

@ -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];