diff options
Diffstat (limited to 'engines/zvision/rlf_animation.cpp')
-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; |