diff options
author | Torbjörn Andersson | 2013-10-06 07:11:09 +0200 |
---|---|---|
committer | Torbjörn Andersson | 2013-10-06 07:11:09 +0200 |
commit | fe5d12a4844494edcf31c9549a339cddf1f5d8d8 (patch) | |
tree | 549232584b0d459d0cca979b8b9e858dbb8ee2fb /engines/fullpipe | |
parent | f35298f9eed0c98a9ec839e80f95c9fcab075223 (diff) | |
download | scummvm-rg350-fe5d12a4844494edcf31c9549a339cddf1f5d8d8.tar.gz scummvm-rg350-fe5d12a4844494edcf31c9549a339cddf1f5d8d8.tar.bz2 scummvm-rg350-fe5d12a4844494edcf31c9549a339cddf1f5d8d8.zip |
FULLPIPE: Fix GCC warning
Diffstat (limited to 'engines/fullpipe')
-rw-r--r-- | engines/fullpipe/motion.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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; |