summaryrefslogtreecommitdiff
path: root/src/simpleanimation.cpp
diff options
context:
space:
mode:
authorBjørn Lindeijer <bjorn@lindeijer.nl>2009-05-03 23:28:26 +0200
committerBjørn Lindeijer <bjorn@lindeijer.nl>2009-05-03 23:41:59 +0200
commitf4e01badebdc5975c9ded35a93f7ac501e4f73c8 (patch)
tree5024e9be339bd47be410278072153c8fd9a1ad8c /src/simpleanimation.cpp
parent3a274b8e8c1183e2ef37a5ac0d75849db5560fb3 (diff)
downloadmana-client-f4e01badebdc5975c9ded35a93f7ac501e4f73c8.tar.gz
mana-client-f4e01badebdc5975c9ded35a93f7ac501e4f73c8.tar.bz2
mana-client-f4e01badebdc5975c9ded35a93f7ac501e4f73c8.tar.xz
mana-client-f4e01badebdc5975c9ded35a93f7ac501e4f73c8.zip
Fixed compile warnings and other tweaks
Warnings were about initialization order and signed variables compared to unsigned variables. Please pay attention to these things. Also made some getters const and turned some std::string parameters into const std::string &.
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 7038f446..678116cc 100644
--- a/src/simpleanimation.cpp
+++ b/src/simpleanimation.cpp
@@ -139,7 +139,7 @@ void SimpleAnimation::setFrame(int frame)
mCurrentFrame = mAnimation->getFrame(mAnimationPhase);
}
-void SimpleAnimation::update(unsigned int timePassed)
+void SimpleAnimation::update(int timePassed)
{
mAnimationTime += timePassed;
@@ -155,7 +155,7 @@ void SimpleAnimation::update(unsigned int timePassed)
}
}
-int SimpleAnimation::getLength()
+int SimpleAnimation::getLength() const
{
return mAnimation->getLength();
}