From a282cfe4e61a040d7c953ae508ee45f8738f7f7d Mon Sep 17 00:00:00 2001 From: Titus Tscharntke Date: Tue, 14 Jun 2011 22:39:31 +0000 Subject: [PATCH] model cycle needs to be initialized with 0 ( said willvarfar ) --- source/shared_lib/sources/graphics/particle.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/source/shared_lib/sources/graphics/particle.cpp b/source/shared_lib/sources/graphics/particle.cpp index 0f488c0dc..7f48ea01c 100644 --- a/source/shared_lib/sources/graphics/particle.cpp +++ b/source/shared_lib/sources/graphics/particle.cpp @@ -735,6 +735,7 @@ ProjectileParticleSystem::ProjectileParticleSystem(int particleCount) : trajectorySpeed= 1.0f; trajectoryScale= 1.0f; trajectoryFrequency= 1.0f; + modelCycle=0.0f; nextParticleSystem= NULL; }