aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorEugene Sandulenko2014-04-28 20:38:08 +0300
committerEugene Sandulenko2014-04-28 20:38:08 +0300
commit31b094892aae7572cd027efd53ad63a635ffeb04 (patch)
tree3c5db1eecf0b1341f66978949b28931c048bacdc /engines
parent0c1b0cd09738283e2aa68e3db1d5d7535a3eff25 (diff)
downloadscummvm-rg350-31b094892aae7572cd027efd53ad63a635ffeb04.tar.gz
scummvm-rg350-31b094892aae7572cd027efd53ad63a635ffeb04.tar.bz2
scummvm-rg350-31b094892aae7572cd027efd53ad63a635ffeb04.zip
FULLPIPE: Fix one more warning
Diffstat (limited to 'engines')
-rw-r--r--engines/fullpipe/input.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/fullpipe/input.cpp b/engines/fullpipe/input.cpp
index 8135eefde3..7c97461a24 100644
--- a/engines/fullpipe/input.cpp
+++ b/engines/fullpipe/input.cpp
@@ -316,7 +316,7 @@ void FullpipeEngine::processArcade(ExCommand *cmd) {
break;
}
- if (idx >= _arcadeKeys.size())
+ if (idx >= (int)_arcadeKeys.size())
return;
}