[Scummvm-cvs-logs] scummvm master -> 31b094892aae7572cd027efd53ad63a635ffeb04

sev- sev at scummvm.org
Mon Apr 28 19:39:51 CEST 2014


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:
31b094892a FULLPIPE: Fix one more warning


Commit: 31b094892aae7572cd027efd53ad63a635ffeb04
    https://github.com/scummvm/scummvm/commit/31b094892aae7572cd027efd53ad63a635ffeb04
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2014-04-28T20:38:08+03:00

Commit Message:
FULLPIPE: Fix one more warning

Changed paths:
    engines/fullpipe/input.cpp



diff --git a/engines/fullpipe/input.cpp b/engines/fullpipe/input.cpp
index 8135eef..7c97461 100644
--- a/engines/fullpipe/input.cpp
+++ b/engines/fullpipe/input.cpp
@@ -316,7 +316,7 @@ void FullpipeEngine::processArcade(ExCommand *cmd) {
 				break;
 		}
 
-		if (idx >= _arcadeKeys.size())
+		if (idx >= (int)_arcadeKeys.size())
 			return;
 	}
 






More information about the Scummvm-git-logs mailing list