diff options
author | richiesams | 2013-08-24 00:14:53 -0500 |
---|---|---|
committer | richiesams | 2013-08-24 00:23:43 -0500 |
commit | c6242e71344d260af49cf5b2368a16d8679aac45 (patch) | |
tree | 1ff2727a8d0a94abc1248c924e5e7e0f30d1abcd /engines/zvision | |
parent | 6610ca1b82a1e335eecf139aaa4ba062574f48b7 (diff) | |
download | scummvm-rg350-c6242e71344d260af49cf5b2368a16d8679aac45.tar.gz scummvm-rg350-c6242e71344d260af49cf5b2368a16d8679aac45.tar.bz2 scummvm-rg350-c6242e71344d260af49cf5b2368a16d8679aac45.zip |
ZVISION: Fix signed/unsigned mismatch
Diffstat (limited to 'engines/zvision')
-rw-r--r-- | engines/zvision/rlf_animation.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/zvision/rlf_animation.h b/engines/zvision/rlf_animation.h index 09d0bac71e..d49e6a9395 100644 --- a/engines/zvision/rlf_animation.h +++ b/engines/zvision/rlf_animation.h @@ -78,7 +78,7 @@ public: const uint16 *getNextFrame(); const uint16 *getPreviousFrame(); - bool endOfAnimation() { return _currentFrame == _frameCount - 1; } + bool endOfAnimation() { return _currentFrame == (int)_frameCount - 1; } private: bool readHeader(); |