aboutsummaryrefslogtreecommitdiff
path: root/engines/fullpipe/scenes
diff options
context:
space:
mode:
authorEugene Sandulenko2014-01-06 09:20:38 +0200
committerEugene Sandulenko2014-01-06 09:21:06 +0200
commit6075da66d01fac96820a836bc6c6e339388e53b5 (patch)
treead3574bfe76b02785e046a2209e5e1abcd22bca5 /engines/fullpipe/scenes
parent784786a26d47e8d30a9930a2229cd517e88ada1a (diff)
downloadscummvm-rg350-6075da66d01fac96820a836bc6c6e339388e53b5.tar.gz
scummvm-rg350-6075da66d01fac96820a836bc6c6e339388e53b5.tar.bz2
scummvm-rg350-6075da66d01fac96820a836bc6c6e339388e53b5.zip
FULLPIPE: Fix compiler warning
Diffstat (limited to 'engines/fullpipe/scenes')
-rw-r--r--engines/fullpipe/scenes/scene25.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/fullpipe/scenes/scene25.cpp b/engines/fullpipe/scenes/scene25.cpp
index efa811147d..5c2ddc695e 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);