diff options
author | Colin Snover | 2016-07-09 17:48:32 -0500 |
---|---|---|
committer | Colin Snover | 2016-07-10 10:50:05 -0500 |
commit | c294e4fbf884be84c5e6027bc2911ce9598fa111 (patch) | |
tree | 345ef24e4ef4190b2f4265cf68e350d7ea07d367 /backends/taskbar | |
parent | 774d0cbdb3ce349bfa2764851169945530eeced3 (diff) | |
download | scummvm-rg350-c294e4fbf884be84c5e6027bc2911ce9598fa111.tar.gz scummvm-rg350-c294e4fbf884be84c5e6027bc2911ce9598fa111.tar.bz2 scummvm-rg350-c294e4fbf884be84c5e6027bc2911ce9598fa111.zip |
MACOS: Fix sign comparison
Diffstat (limited to 'backends/taskbar')
-rw-r--r-- | backends/taskbar/macosx/macosx-taskbar.mm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/taskbar/macosx/macosx-taskbar.mm b/backends/taskbar/macosx/macosx-taskbar.mm index 577320b79d..4e6124e5a6 100644 --- a/backends/taskbar/macosx/macosx-taskbar.mm +++ b/backends/taskbar/macosx/macosx-taskbar.mm @@ -269,7 +269,7 @@ void MacOSXTaskbarManager::addRecent(const Common::String &name, const Common::S // Insert the new game at the start [newArray insertObject:dict atIndex:0]; // If the game was already present in the array, remove it - for (int i = 1 ; i < [newArray count] ; ++i) { + for (NSUInteger i = 1 ; i < [newArray count] ; ++i) { NSDictionary *oldDict = [newArray objectAtIndex:i]; if (oldDict == nil) continue; |