diff options
author | Stijn Buys <ingar@osirion.org> | 2012-10-16 17:13:26 +0000 |
---|---|---|
committer | Stijn Buys <ingar@osirion.org> | 2012-10-16 17:13:26 +0000 |
commit | f01629dc14b1ee05b44d2e38b3dffbc1441fd85f (patch) | |
tree | 0a811b3f9f8d9a88b3e471c065b2d212b4883cdc /src | |
parent | 2aff6864e084a3e7af4677c33f88cc7cfee5f4d8 (diff) |
Corrects a small bug in the list_particles function where the summary is printed multiple times.
Diffstat (limited to 'src')
-rw-r--r-- | src/render/particles.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/render/particles.cc b/src/render/particles.cc index 2cc1b1a..4624539 100644 --- a/src/render/particles.cc +++ b/src/render/particles.cc @@ -62,8 +62,8 @@ void ParticleScript::list() script = script->next(); } con_print << " " << (*it).second->label() << strval << " " << count << " " << aux::plural("ejector", count) << std::endl; - con_print << particlescript_registry.size() << " particle scripts" << std::endl; } + con_print << particlescript_registry.size() << " particle scripts" << std::endl; } void ParticleScript::clear() |