From fe5d12a4844494edcf31c9549a339cddf1f5d8d8 Mon Sep 17 00:00:00 2001 From: Torbjörn Andersson Date: Sun, 6 Oct 2013 07:11:09 +0200 Subject: FULLPIPE: Fix GCC warning --- engines/fullpipe/motion.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'engines/fullpipe') diff --git a/engines/fullpipe/motion.cpp b/engines/fullpipe/motion.cpp index ecf128e9cd..85fe1d9116 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; -- cgit v1.2.3