Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2012-10-16 17:13:26 +0000
committerStijn Buys <ingar@osirion.org>2012-10-16 17:13:26 +0000
commitf01629dc14b1ee05b44d2e38b3dffbc1441fd85f (patch)
tree0a811b3f9f8d9a88b3e471c065b2d212b4883cdc /src/render
parent2aff6864e084a3e7af4677c33f88cc7cfee5f4d8 (diff)
Corrects a small bug in the list_particles function where the summary is printed multiple times.
Diffstat (limited to 'src/render')
-rw-r--r--src/render/particles.cc2
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()