diff options
author | Jared Adams <jaxad0127@gmail.com> | 2009-03-12 07:13:48 -0600 |
---|---|---|
committer | Jared Adams <jaxad0127@gmail.com> | 2009-03-12 07:13:48 -0600 |
commit | f3796c231d5bcac6850fb9afc8db652361e3fceb (patch) | |
tree | df79d9614dc601cfc1ee77fcd42a77caef389858 /src/statuseffect.h | |
parent | e2d60401eaf55abe9e2251854f3174ffe0f4ad9e (diff) | |
download | mana-f3796c231d5bcac6850fb9afc8db652361e3fceb.tar.gz mana-f3796c231d5bcac6850fb9afc8db652361e3fceb.tar.bz2 mana-f3796c231d5bcac6850fb9afc8db652361e3fceb.tar.xz mana-f3796c231d5bcac6850fb9afc8db652361e3fceb.zip |
Fix leaks in status effects
Diffstat (limited to 'src/statuseffect.h')
-rw-r--r-- | src/statuseffect.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/statuseffect.h b/src/statuseffect.h index 16fed69a..f1af93d2 100644 --- a/src/statuseffect.h +++ b/src/statuseffect.h @@ -94,9 +94,11 @@ public: */ static int blockEffectIndexToEffectIndex(int blocKIndex); -private: static void load(); + static void unload(); +private: + std::string mMessage; std::string mSFXEffect; std::string mParticleEffect; |