diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-10-18 18:42:51 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-10-19 15:12:21 +0300 |
commit | 2033ce76a8fba2148bc034d16e1d226bc757c47f (patch) | |
tree | 08a53fde19959fc72c09c42b457f63d63aba291d /src/particle/animationparticle.h | |
parent | e441e9e40d27930f3533ffecfa2a48e4fd312f4c (diff) | |
download | plus-2033ce76a8fba2148bc034d16e1d226bc757c47f.tar.gz plus-2033ce76a8fba2148bc034d16e1d226bc757c47f.tar.bz2 plus-2033ce76a8fba2148bc034d16e1d226bc757c47f.tar.xz plus-2033ce76a8fba2148bc034d16e1d226bc757c47f.zip |
remove virtual methos call from particle constructor.
Diffstat (limited to 'src/particle/animationparticle.h')
-rw-r--r-- | src/particle/animationparticle.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/particle/animationparticle.h b/src/particle/animationparticle.h index 3bfdea0b6..eb864ea86 100644 --- a/src/particle/animationparticle.h +++ b/src/particle/animationparticle.h @@ -34,9 +34,9 @@ class SimpleAnimation; class AnimationParticle final : public ImageParticle { public: - AnimationParticle(Map *const map, Animation *const animation); + AnimationParticle(Animation *const animation); - AnimationParticle(Map *const map, XmlNodePtr const animationNode, + AnimationParticle(XmlNodePtr const animationNode, const std::string& dyePalettes = std::string()); A_DELETE_COPY(AnimationParticle) |