From c6242e71344d260af49cf5b2368a16d8679aac45 Mon Sep 17 00:00:00 2001 From: richiesams Date: Sat, 24 Aug 2013 00:14:53 -0500 Subject: ZVISION: Fix signed/unsigned mismatch --- engines/zvision/rlf_animation.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'engines/zvision') 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(); -- cgit v1.2.3