[Scummvm-cvs-logs] scummvm master -> ecc45b961f732c013053632db80976c878fad410

bluegr bluegr at gmail.com
Mon Jan 19 22:23:33 CET 2015


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

Summary:
08b6a5b486 ZVISION: Fix comparison between signed and unsigned integers
ecc45b961f Merge pull request #567 from fedor4ever/master


Commit: 08b6a5b4865453e916709003e3a0b1a032b8e97e
    https://github.com/scummvm/scummvm/commit/08b6a5b4865453e916709003e3a0b1a032b8e97e
Author: Fedor (fedor4ever at users.noreply.github.com)
Date: 2015-01-19T23:25:40+03:00

Commit Message:
ZVISION: Fix comparison between signed and unsigned integers

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 040582b..3e11a70 100644
--- a/engines/zvision/video/rlf_decoder.cpp
+++ b/engines/zvision/video/rlf_decoder.cpp
@@ -169,7 +169,7 @@ bool RLFDecoder::RLFVideoTrack::seek(const Audio::Timestamp &time) {
 
 	if (distance < 0) {
 		for (uint i = 0; i < _completeFrames.size(); ++i) {
-			if ((int)_completeFrames[i] > frame)
+			if (_completeFrames[i] > frame)
 				break;
 			closestFrame = _completeFrames[i];
 		}


Commit: ecc45b961f732c013053632db80976c878fad410
    https://github.com/scummvm/scummvm/commit/ecc45b961f732c013053632db80976c878fad410
Author: Filippos Karapetis (bluegr at gmail.com)
Date: 2015-01-19T23:22:23+02:00

Commit Message:
Merge pull request #567 from fedor4ever/master

ZVISION: Fix comparison between signed and unsigned integers

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









More information about the Scummvm-git-logs mailing list