Skip to content

Commit

Permalink
Set default MaxParticles count to 10000
Browse files Browse the repository at this point in the history
(The previous value was used when counting worked differently)
  • Loading branch information
ashdnazg committed Aug 26, 2016
1 parent 36c2506 commit ab2157c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rts/Sim/Projectiles/ProjectileHandler.cpp
Expand Up @@ -37,7 +37,7 @@

using namespace std;

CONFIG(int, MaxParticles).defaultValue(3000).headlessValue(1).minimumValue(1);
CONFIG(int, MaxParticles).defaultValue(10000).headlessValue(1).minimumValue(1);
CONFIG(int, MaxNanoParticles).defaultValue(2000).headlessValue(1).minimumValue(1);

CProjectileHandler* projectileHandler = NULL;
Expand Down

0 comments on commit ab2157c

Please sign in to comment.