[Scummvm-cvs-logs] scummvm master -> 6075da66d01fac96820a836bc6c6e339388e53b5

sev- sev at scummvm.org
Mon Jan 6 08:21:32 CET 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:
6075da66d0 FULLPIPE: Fix compiler warning


Commit: 6075da66d01fac96820a836bc6c6e339388e53b5
    https://github.com/scummvm/scummvm/commit/6075da66d01fac96820a836bc6c6e339388e53b5
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2014-01-05T23:21:06-08:00

Commit Message:
FULLPIPE: Fix compiler warning

Changed paths:
    engines/fullpipe/scenes/scene25.cpp



diff --git a/engines/fullpipe/scenes/scene25.cpp b/engines/fullpipe/scenes/scene25.cpp
index efa8111..5c2ddc6 100644
--- a/engines/fullpipe/scenes/scene25.cpp
+++ b/engines/fullpipe/scenes/scene25.cpp
@@ -454,7 +454,7 @@ void sceneHandler25_walkOnLadder(StaticANIObject *ani, Common::Point *pnt, Messa
 	int minDistance = 20000;
 	ExCommand *lastEx = 0;
 
-	for (int i = 0; i < mq->getCount(); i++) {
+	for (uint i = 0; i < mq->getCount(); i++) {
 		int curDistance = abs(pnty - aniY);
 
 		ex = mq->getExCommandByIndex(i);






More information about the Scummvm-git-logs mailing list