diff options
author | richiesams | 2013-09-03 00:34:01 -0500 |
---|---|---|
committer | richiesams | 2013-09-03 00:34:01 -0500 |
commit | efb0495758b8f5ee5f59d148a15cf03265cd6c2d (patch) | |
tree | a06dea2b68ae98df4ffe1f858b83bd0435aa3c64 /engines/zvision | |
parent | 98dc015dc1329ef233d4fe9606ab98c26b0f8438 (diff) | |
download | scummvm-rg350-efb0495758b8f5ee5f59d148a15cf03265cd6c2d.tar.gz scummvm-rg350-efb0495758b8f5ee5f59d148a15cf03265cd6c2d.tar.bz2 scummvm-rg350-efb0495758b8f5ee5f59d148a15cf03265cd6c2d.zip |
ZVISION: Fix signed/unsigned mismatch
Diffstat (limited to 'engines/zvision')
-rw-r--r-- | engines/zvision/rlf_animation.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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; |