aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
Diffstat (limited to 'engines')
-rw-r--r--engines/zvision/rlf_animation.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/zvision/rlf_animation.cpp b/engines/zvision/rlf_animation.cpp
index ff855a1a39..6b6120fb63 100644
--- a/engines/zvision/rlf_animation.cpp
+++ b/engines/zvision/rlf_animation.cpp
@@ -193,7 +193,7 @@ const uint16 *RlfAnimation::getFrameData(uint frameNumber) {
}
const uint16 *RlfAnimation::getNextFrame() {
- assert(_currentFrame + 1 < _frameCount);
+ assert(_currentFrame + 1 < (int)_frameCount);
if (_stream) {
applyFrameToCurrent(readNextFrame());