diff options
Diffstat (limited to 'src/particle/particle.cpp')
-rw-r--r-- | src/particle/particle.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/particle/particle.cpp b/src/particle/particle.cpp index c446fa177..d86edf584 100644 --- a/src/particle/particle.cpp +++ b/src/particle/particle.cpp @@ -217,7 +217,8 @@ bool Particle::update() // create death effect when the particle died if (mAlive != ALIVE && mAlive != DEAD_LONG_AGO) { - if ((mAlive & mDeathEffectConditions) > 0x00 && !mDeathEffect.empty()) + if ((static_cast<unsigned int>(mAlive) & mDeathEffectConditions) + > 0x00 && !mDeathEffect.empty()) { Particle *const deathEffect = particleEngine->addEffect( mDeathEffect, 0, 0); |