diff options
author | Eugene Sandulenko | 2014-01-06 09:20:38 +0200 |
---|---|---|
committer | Eugene Sandulenko | 2014-01-06 09:21:06 +0200 |
commit | 6075da66d01fac96820a836bc6c6e339388e53b5 (patch) | |
tree | ad3574bfe76b02785e046a2209e5e1abcd22bca5 /engines/fullpipe/scenes | |
parent | 784786a26d47e8d30a9930a2229cd517e88ada1a (diff) | |
download | scummvm-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.cpp | 2 |
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); |