diff options
author | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2009-05-03 23:28:26 +0200 |
---|---|---|
committer | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2009-05-03 23:41:59 +0200 |
commit | f4e01badebdc5975c9ded35a93f7ac501e4f73c8 (patch) | |
tree | 5024e9be339bd47be410278072153c8fd9a1ad8c /src/resources/animation.h | |
parent | 3a274b8e8c1183e2ef37a5ac0d75849db5560fb3 (diff) | |
download | mana-f4e01badebdc5975c9ded35a93f7ac501e4f73c8.tar.gz mana-f4e01badebdc5975c9ded35a93f7ac501e4f73c8.tar.bz2 mana-f4e01badebdc5975c9ded35a93f7ac501e4f73c8.tar.xz mana-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/resources/animation.h')
-rw-r--r-- | src/resources/animation.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/resources/animation.h b/src/resources/animation.h index f309dbf8..80e0781a 100644 --- a/src/resources/animation.h +++ b/src/resources/animation.h @@ -34,7 +34,7 @@ class Image; struct Frame { Image *image; - unsigned int delay; + int delay; int offsetX; int offsetY; }; @@ -68,7 +68,7 @@ class Animation /** * Returns the length of this animation in frames. */ - unsigned int getLength() const { return mFrames.size(); } + int getLength() const { return mFrames.size(); } /** * Returns the duration of this animation. |