From 17f61a808edd3c87812d33572087e1b2c5448ad2 Mon Sep 17 00:00:00 2001 From: Mark Vejvoda Date: Wed, 8 Sep 2010 22:54:02 +0000 Subject: [PATCH] - bugfix for VERY BAD missing return value --- source/glest_game/graphics/renderer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/glest_game/graphics/renderer.cpp b/source/glest_game/graphics/renderer.cpp index bd16b717..a73b3882 100644 --- a/source/glest_game/graphics/renderer.cpp +++ b/source/glest_game/graphics/renderer.cpp @@ -478,7 +478,7 @@ void Renderer::manageParticleSystem(ParticleSystem *particleSystem, ResourceScop } bool Renderer::validateParticleSystemStillExists(ParticleSystem * particleSystem,ResourceScope rs) const { - particleManager[rs]->validateParticleSystemStillExists(particleSystem); + return particleManager[rs]->validateParticleSystemStillExists(particleSystem); } void Renderer::cleanupParticleSystems(vector &particleSystems, ResourceScope rs) {