- bugfix for VERY BAD missing return value

This commit is contained in:
Mark Vejvoda 2010-09-08 22:54:02 +00:00
parent cf5b085b2e
commit 17f61a808e

View File

@ -478,7 +478,7 @@ void Renderer::manageParticleSystem(ParticleSystem *particleSystem, ResourceScop
} }
bool Renderer::validateParticleSystemStillExists(ParticleSystem * particleSystem,ResourceScope rs) const { bool Renderer::validateParticleSystemStillExists(ParticleSystem * particleSystem,ResourceScope rs) const {
particleManager[rs]->validateParticleSystemStillExists(particleSystem); return particleManager[rs]->validateParticleSystemStillExists(particleSystem);
} }
void Renderer::cleanupParticleSystems(vector<ParticleSystem *> &particleSystems, ResourceScope rs) { void Renderer::cleanupParticleSystems(vector<ParticleSystem *> &particleSystems, ResourceScope rs) {