diff options
| author | Eugene Sandulenko | 2016-12-12 23:38:03 +0100 |
|---|---|---|
| committer | Eugene Sandulenko | 2016-12-12 23:38:03 +0100 |
| commit | ae7147c6c4918f719df4e343970501375eb58694 (patch) | |
| tree | 556dbc177b49cde74285bcffe7a96359a213aadf /engines | |
| parent | c5e55878ad68b26babcc5ca654cf39488df102ec (diff) | |
| download | scummvm-rg350-ae7147c6c4918f719df4e343970501375eb58694.tar.gz scummvm-rg350-ae7147c6c4918f719df4e343970501375eb58694.tar.bz2 scummvm-rg350-ae7147c6c4918f719df4e343970501375eb58694.zip | |
FULLPIPE: Fix warning
Diffstat (limited to 'engines')
| -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 55bc21716e..4bcc2acc17 100644 --- a/engines/fullpipe/input.cpp +++ b/engines/fullpipe/input.cpp @@ -57,7 +57,7 @@ InputController::~InputController() { g_fp->_inputController = 0; - for (int i = 0; i < _cursorsArray.size(); i++) + for (uint i = 0; i < _cursorsArray.size(); i++) delete _cursorsArray[i]; } |
