aboutsummaryrefslogtreecommitdiff
path: root/engines/zvision
diff options
context:
space:
mode:
authorTorbjörn Andersson2015-03-05 07:28:40 +0100
committerTorbjörn Andersson2015-03-05 07:28:40 +0100
commit53cd90b32c7ad6fe7e1ac5f4c781c5e776bd9348 (patch)
tree05704d9f8a7eeb97d7319960db21bbb4aa3b4aa8 /engines/zvision
parentce4c030117ece5f9c0d0384556f82125b2a5ed29 (diff)
downloadscummvm-rg350-53cd90b32c7ad6fe7e1ac5f4c781c5e776bd9348.tar.gz
scummvm-rg350-53cd90b32c7ad6fe7e1ac5f4c781c5e776bd9348.tar.bz2
scummvm-rg350-53cd90b32c7ad6fe7e1ac5f4c781c5e776bd9348.zip
ZVISION: Fix GCC signed/unsigned warning
Diffstat (limited to 'engines/zvision')
-rw-r--r--engines/zvision/video/rlf_decoder.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/zvision/video/rlf_decoder.cpp b/engines/zvision/video/rlf_decoder.cpp
index 3e11a70f27..3bbf22edff 100644
--- a/engines/zvision/video/rlf_decoder.cpp
+++ b/engines/zvision/video/rlf_decoder.cpp
@@ -159,7 +159,7 @@ RLFDecoder::RLFVideoTrack::Frame RLFDecoder::RLFVideoTrack::readNextFrame() {
bool RLFDecoder::RLFVideoTrack::seek(const Audio::Timestamp &time) {
uint frame = getFrameAtTime(time);
- assert(frame < (int)_frameCount);
+ assert(frame < _frameCount);
if ((uint)_displayedFrame == frame)
return true;