diff options
author | Nuno Donato <nunodonato@gmail.com> | 2016-02-16 08:56:31 +0000 |
---|---|---|
committer | Nuno Donato <nunodonato@gmail.com> | 2016-02-16 08:56:31 +0000 |
commit | 2d1de834348473bae7bd676587d2e72ae03a5642 (patch) | |
tree | bcb42252f2ea2a2e77433c00e1e526b35f937ee6 /servers/visual | |
parent | 7496fd4788a2aced44188f3c113eb15994fda4c0 (diff) |
refix particles3d issue, bringing down the amount limit to 1024
Diffstat (limited to 'servers/visual')
-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 87c71696cf..9a176ba0d4 100644 --- a/servers/visual/particle_system_sw.h +++ b/servers/visual/particle_system_sw.h @@ -38,7 +38,7 @@ struct ParticleSystemSW { enum { - MAX_PARTICLES=4096 + MAX_PARTICLES=1024 }; float particle_vars[VS::PARTICLE_VAR_MAX]; |