Skip to content

Commit

Permalink
KEYMAPPER: Fix a signed/unsigned comparison warning
Browse files Browse the repository at this point in the history
  • Loading branch information
tsoliman committed Feb 22, 2012
1 parent da96f80 commit dbdfc13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backends/keymapper/keymapper.cpp
Expand Up @@ -119,7 +119,7 @@ void Keymapper::cleanupGameKeymaps() {
// the game specific (=deleted) ones.
Stack<MapRecord> newStack;

for (int i = 0; i < _activeMaps.size(); i++) {
for (Stack<MapRecord>::size_type i = 0; i < _activeMaps.size(); i++) {
if (_activeMaps[i].global)
newStack.push(_activeMaps[i]);
}
Expand Down

0 comments on commit dbdfc13

Please sign in to comment.