Skip to content

Commit

Permalink
FULLPIPE: Silence GCC signed/unsigned warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
Torbjörn Andersson committed Jan 5, 2017
1 parent 825482e commit fa466af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engines/fullpipe/input.cpp
Expand Up @@ -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];
}

Expand Down

0 comments on commit fa466af

Please sign in to comment.