diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-02-28 21:43:44 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-02-28 21:43:44 +0300 |
commit | 50f96cb7f1069aee951a4ffabd17d2e9753b0987 (patch) | |
tree | 2e266c42122c82c6c3943f7464ea35db22fc5c24 /src/particle.h | |
parent | 5463aed3e9b8dc08f9e19d2ad37a277e02db66ed (diff) | |
download | plus-50f96cb7f1069aee951a4ffabd17d2e9753b0987.tar.gz plus-50f96cb7f1069aee951a4ffabd17d2e9753b0987.tar.bz2 plus-50f96cb7f1069aee951a4ffabd17d2e9753b0987.tar.xz plus-50f96cb7f1069aee951a4ffabd17d2e9753b0987.zip |
Fix error in particle class.
Diffstat (limited to 'src/particle.h')
-rw-r--r-- | src/particle.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/particle.h b/src/particle.h index 2f4ea77fd..fac643193 100644 --- a/src/particle.h +++ b/src/particle.h @@ -305,9 +305,9 @@ class Particle : public Actor finished*/ Vector mVelocity; /**< Speed in pixels per game-tick. */ - private: AliveStatus mAlive; /**< Is the particle supposed to be drawn and updated?*/ + private: // generic properties bool mAutoDelete; /**< May the particle request its deletion by the parent particle? */ |