diff options
author | Eugene Sandulenko | 2014-04-28 20:38:08 +0300 |
---|---|---|
committer | Eugene Sandulenko | 2014-04-28 20:38:08 +0300 |
commit | 31b094892aae7572cd027efd53ad63a635ffeb04 (patch) | |
tree | 3c5db1eecf0b1341f66978949b28931c048bacdc | |
parent | 0c1b0cd09738283e2aa68e3db1d5d7535a3eff25 (diff) | |
download | scummvm-rg350-31b094892aae7572cd027efd53ad63a635ffeb04.tar.gz scummvm-rg350-31b094892aae7572cd027efd53ad63a635ffeb04.tar.bz2 scummvm-rg350-31b094892aae7572cd027efd53ad63a635ffeb04.zip |
FULLPIPE: Fix one more warning
-rw-r--r-- | engines/fullpipe/input.cpp | 2 |
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; } |