diff options
Diffstat (limited to 'src/particle.h')
-rw-r--r-- | src/particle.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/particle.h b/src/particle.h index 821be8baa..4dc419aea 100644 --- a/src/particle.h +++ b/src/particle.h @@ -291,7 +291,7 @@ class Particle : public Actor { } virtual void setDeathEffect(const std::string &effectFile, - const char conditions) + const signed char conditions) { mDeathEffect = effectFile; mDeathEffectConditions = conditions; } protected: @@ -318,8 +318,8 @@ class Particle : public Actor the object props in the map file? */ std::string mDeathEffect; /**< Particle effect file to be spawned when the particle dies */ - char mDeathEffectConditions; /**< Bitfield of death conditions which - trigger spawning of the death + signed char mDeathEffectConditions; /**< Bitfield of death conditions + which trigger spawning of the death particle */ // dynamic particle |