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

eriktorbjorn eriktorbjorn at telia.com
Sun Oct 6 07:17:24 CEST 2013


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:
fe5d12a484 FULLPIPE: Fix GCC warning


Commit: fe5d12a4844494edcf31c9549a339cddf1f5d8d8
    https://github.com/scummvm/scummvm/commit/fe5d12a4844494edcf31c9549a339cddf1f5d8d8
Author: Torbjörn Andersson (eriktorbjorn at users.sourceforge.net)
Date: 2013-10-05T22:11:09-07:00

Commit Message:
FULLPIPE: Fix GCC warning

Changed paths:
    engines/fullpipe/motion.cpp



diff --git a/engines/fullpipe/motion.cpp b/engines/fullpipe/motion.cpp
index ecf128e..85fe1d9 100644
--- a/engines/fullpipe/motion.cpp
+++ b/engines/fullpipe/motion.cpp
@@ -756,7 +756,7 @@ bool MovGraphReact::pointInRegion(int x, int y) {
 	p1.x = (double)_points[0]->x;
 	p1.y = (double)_points[0]->y;
 
-	for (uint32 i = 1; i <= _pointCount; i++) {
+	for (int i = 1; i <= _pointCount; i++) {
 		p2.x = (double)_points[i % _pointCount]->x;
 		p2.y = (double)_points[i % _pointCount]->y;
 






More information about the Scummvm-git-logs mailing list