From 1c0c540fa78bc6eef49c3d42a6a7512820fe3622 Mon Sep 17 00:00:00 2001 From: Colin Snover Date: Sun, 10 Jul 2016 11:46:32 -0500 Subject: MACOS: Use 'unsigned int' instead of NSUInteger NSUInteger apparently does not exist until macOS 10.5, but buildbot targets 10.4. --- backends/taskbar/macosx/macosx-taskbar.mm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'backends/taskbar/macosx') diff --git a/backends/taskbar/macosx/macosx-taskbar.mm b/backends/taskbar/macosx/macosx-taskbar.mm index 4e6124e5a6..c842eb8090 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 (NSUInteger i = 1 ; i < [newArray count] ; ++i) { + for (unsigned int i = 1 ; i < [newArray count] ; ++i) { NSDictionary *oldDict = [newArray objectAtIndex:i]; if (oldDict == nil) continue; -- cgit v1.2.3