diff options
Diffstat (limited to 'src/animatedsprite.cpp')
-rw-r--r-- | src/animatedsprite.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/animatedsprite.cpp b/src/animatedsprite.cpp index bbfde2adb..0bcb78713 100644 --- a/src/animatedsprite.cpp +++ b/src/animatedsprite.cpp @@ -142,7 +142,7 @@ bool AnimatedSprite::play(const std::string &spriteAction) return false; mAction = action; - Animation *const animation = mAction->getAnimation(mDirection); + const Animation *const animation = mAction->getAnimation(mDirection); if (animation && animation != mAnimation && animation->getLength() > 0) { @@ -307,7 +307,7 @@ bool AnimatedSprite::setSpriteDirection(const SpriteDirection direction) if (!mAction) return false; - Animation *const animation = mAction->getAnimation(mDirection); + const Animation *const animation = mAction->getAnimation(mDirection); if (animation && animation != mAnimation && animation->getLength() > 0) { |