From c1a1f742c33d5283e5c4bc9571e83df7c5aae485 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Tue, 19 Feb 2008 16:02:03 +0000 Subject: [PATCH] Removed erroneous ; --- src/osgParticle/ParticleSystem.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/osgParticle/ParticleSystem.cpp b/src/osgParticle/ParticleSystem.cpp index b93ae55a6..d22a144e0 100644 --- a/src/osgParticle/ParticleSystem.cpp +++ b/src/osgParticle/ParticleSystem.cpp @@ -183,7 +183,7 @@ void osgParticle::ParticleSystem::single_pass_render(osg::State& /*state*/, con const Particle* currentParticle = &_particles[i]; if (currentParticle->isAlive()) { - if (currentParticle->getShape() != startParticle->getShape()); + if (currentParticle->getShape() != startParticle->getShape()) { startParticle->endRender(); currentParticle->beginRender();