Skip to content

Commit

Permalink
FULLPIPE: Fix compiler warning
Browse files Browse the repository at this point in the history
  • Loading branch information
sev- committed Jan 6, 2014
1 parent 784786a commit 6075da6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engines/fullpipe/scenes/scene25.cpp
Expand Up @@ -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);
Expand Down

0 comments on commit 6075da6

Please sign in to comment.