From f0e95132f27ceb901fbd779fafc798a1f67a06a6 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Wed, 18 Jul 2012 01:51:36 +0300 Subject: Another warning fixes. --- src/simpleanimation.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/simpleanimation.cpp') 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(frame) >= mAnimation->getLength()) - frame = mAnimation->getLength() - 1; + frame = static_cast(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(mAnimation->getLength()); } Image *SimpleAnimation::getCurrentImage() const -- cgit v1.2.3-60-g2f50