diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2016-02-16 07:49:36 +0100 |
---|---|---|
committer | Rémi Verschelde <remi@verschelde.fr> | 2016-02-16 07:49:36 +0100 |
commit | 658153a08807d1461dc7d50157399c252a2e4d1c (patch) | |
tree | a90f9fe77f0791f672ade2f7958c5d817191021b | |
parent | a63ebda21f9be212df73e293c8a55381847d02f8 (diff) | |
parent | b3fadd66c81d39175e144d61b7a4856f03af301b (diff) |
Merge pull request #3688 from nunodonato/fixparticles
raised the max amount of particles to match the max number allowed …
-rw-r--r-- | servers/visual/particle_system_sw.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/servers/visual/particle_system_sw.h b/servers/visual/particle_system_sw.h index 9a176ba0d4..87c71696cf 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]; |