[Scummvm-cvs-logs] scummvm master -> 53cd90b32c7ad6fe7e1ac5f4c781c5e776bd9348

eriktorbjorn eriktorbjorn at telia.com
Thu Mar 5 07:29:47 CET 2015


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
53cd90b32c ZVISION: Fix GCC signed/unsigned warning


Commit: 53cd90b32c7ad6fe7e1ac5f4c781c5e776bd9348
    https://github.com/scummvm/scummvm/commit/53cd90b32c7ad6fe7e1ac5f4c781c5e776bd9348
Author: Torbjörn Andersson (eriktorbjorn at users.sourceforge.net)
Date: 2015-03-05T07:28:40+01:00

Commit Message:
ZVISION: Fix GCC signed/unsigned warning

Changed paths:
    engines/zvision/video/rlf_decoder.cpp



diff --git a/engines/zvision/video/rlf_decoder.cpp b/engines/zvision/video/rlf_decoder.cpp
index 3e11a70..3bbf22e 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;






More information about the Scummvm-git-logs mailing list