summaryrefslogtreecommitdiff
path: root/src/simpleanimation.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2012-07-18 01:51:36 +0300
committerAndrei Karas <akaras@inbox.ru>2012-07-18 01:51:36 +0300
commitf0e95132f27ceb901fbd779fafc798a1f67a06a6 (patch)
tree52ee9ab21f4e01c2c8ae70b86841b0138349645d /src/simpleanimation.cpp
parent7e0a97d2521b9ce57003176e82a0b5564aa003c2 (diff)
downloadplus-f0e95132f27ceb901fbd779fafc798a1f67a06a6.tar.gz
plus-f0e95132f27ceb901fbd779fafc798a1f67a06a6.tar.bz2
plus-f0e95132f27ceb901fbd779fafc798a1f67a06a6.tar.xz
plus-f0e95132f27ceb901fbd779fafc798a1f67a06a6.zip
Another warning fixes.
Diffstat (limited to 'src/simpleanimation.cpp')
-rw-r--r--src/simpleanimation.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/simpleanimation.cpp b/src/simpleanimation.cpp
index 95c03f141..9ab011c92 100644
--- a/src/simpleanimation.cpp
+++ b/src/simpleanimation.cpp
@@ -88,7 +88,7 @@ void SimpleAnimation::setFrame(int frame)
if (frame < 0)
frame = 0;
if (static_cast<unsigned>(frame) >= mAnimation->getLength())
- frame = mAnimation->getLength() - 1;
+ frame = static_cast<int>(mAnimation->getLength()) - 1;
mAnimationPhase = frame;
mCurrentFrame = &mAnimation->mFrames[mAnimationPhase];
}
@@ -127,7 +127,7 @@ int SimpleAnimation::getLength() const
if (!mAnimation)
return 0;
- return mAnimation->getLength();
+ return static_cast<int>(mAnimation->getLength());
}
Image *SimpleAnimation::getCurrentImage() const