summaryrefslogtreecommitdiff
path: root/src/animatedsprite.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/animatedsprite.cpp')
-rw-r--r--src/animatedsprite.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/animatedsprite.cpp b/src/animatedsprite.cpp
index 99900dbab..bbfde2adb 100644
--- a/src/animatedsprite.cpp
+++ b/src/animatedsprite.cpp
@@ -137,7 +137,7 @@ bool AnimatedSprite::play(const std::string &spriteAction)
return true;
}
- Action *const action = mSprite->getAction(spriteAction, mNumber);
+ const Action *const action = mSprite->getAction(spriteAction, mNumber);
if (!action)
return false;
@@ -374,7 +374,7 @@ void AnimatedSprite::setAlpha(float alpha)
}
}
-void *AnimatedSprite::getHash()
+const void *AnimatedSprite::getHash() const
{
if (mFrame)
return mFrame;