From efb0495758b8f5ee5f59d148a15cf03265cd6c2d Mon Sep 17 00:00:00 2001 From: richiesams Date: Tue, 3 Sep 2013 00:34:01 -0500 Subject: ZVISION: Fix signed/unsigned mismatch --- engines/zvision/rlf_animation.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engines/zvision/rlf_animation.cpp b/engines/zvision/rlf_animation.cpp index 73fbe05bfc..ffc272c1c8 100644 --- a/engines/zvision/rlf_animation.cpp +++ b/engines/zvision/rlf_animation.cpp @@ -72,7 +72,7 @@ RlfAnimation::RlfAnimation(const Common::String &fileName, bool stream) RlfAnimation::~RlfAnimation() { delete[] _currentFrameBuffer; - for (int i = 0; i < _frameCount; i++) { + for (uint i = 0; i < _frameCount; i++) { delete[] _frames[i].encodedData; } delete[] _frames; -- cgit v1.2.3