summaryrefslogtreecommitdiff
path: root/src/particle/animationparticle.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/particle/animationparticle.cpp')
-rw-r--r--src/particle/animationparticle.cpp10
1 files changed, 4 insertions, 6 deletions
diff --git a/src/particle/animationparticle.cpp b/src/particle/animationparticle.cpp
index bfa1d6c7f..6fba399c8 100644
--- a/src/particle/animationparticle.cpp
+++ b/src/particle/animationparticle.cpp
@@ -26,17 +26,15 @@
#include "debug.h"
-AnimationParticle::AnimationParticle(Map *const map,
- Animation *const animation) :
- ImageParticle(map, nullptr),
+AnimationParticle::AnimationParticle(Animation *const animation) :
+ ImageParticle(nullptr),
mAnimation(new SimpleAnimation(animation))
{
}
-AnimationParticle::AnimationParticle(Map *const map,
- XmlNodePtr const animationNode,
+AnimationParticle::AnimationParticle(XmlNodePtr const animationNode,
const std::string& dyePalettes):
- ImageParticle(map, nullptr),
+ ImageParticle(nullptr),
mAnimation(new SimpleAnimation(animationNode, dyePalettes))
{
}