summaryrefslogtreecommitdiff
path: root/servers
diff options
context:
space:
mode:
authorNuno Donato <nunodonato@gmail.com>2016-02-12 11:32:55 +0000
committerNuno Donato <nunodonato@gmail.com>2016-02-12 11:45:26 +0000
commitb3fadd66c81d39175e144d61b7a4856f03af301b (patch)
tree14c0aa0c1963565fbdb6b4c0f44196eb0fa57cad /servers
parentde6d6633ec96ee90afb3074be79c0ad6055ec8eb (diff)
* raised the max amount of particles to match the max number allowed in the inspector (prevents crash)
Diffstat (limited to 'servers')
-rw-r--r--servers/visual/particle_system_sw.h2
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];