diff --git a/src/p_effect.cpp b/src/p_effect.cpp index d6c4c3a5f..7edaf8120 100644 --- a/src/p_effect.cpp +++ b/src/p_effect.cpp @@ -151,7 +151,7 @@ void P_InitParticles () NumParticles = r_maxparticles; // This should be good, but eh... - NumParticles = clamp(NumParticles, 100, 65535); + NumParticles = clamp(NumParticles, 100, 65535); P_DeinitParticles(); Particles = new particle_t[NumParticles];