From b3fadd66c81d39175e144d61b7a4856f03af301b Mon Sep 17 00:00:00 2001 From: Nuno Donato Date: Fri, 12 Feb 2016 11:32:55 +0000 Subject: [PATCH] * raised the max amount of particles to match the max number allowed in the inspector (prevents crash) --- servers/visual/particle_system_sw.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/servers/visual/particle_system_sw.h b/servers/visual/particle_system_sw.h index 9a176ba0d4a..87c71696cf3 100644 --- a/servers/visual/particle_system_sw.h +++ b/servers/visual/particle_system_sw.h @@ -38,7 +38,7 @@ struct ParticleSystemSW { enum { - MAX_PARTICLES=1024 + MAX_PARTICLES=4096 }; float particle_vars[VS::PARTICLE_VAR_MAX];