From a8345b217b801dec1e94587fde6184e6ba29b9ef Mon Sep 17 00:00:00 2001 From: Lioncash Date: Sat, 20 Sep 2014 23:22:37 -0400 Subject: [PATCH] iOS: Fix another signed/unsigned mismatch warning --- apple/iOS/platform.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apple/iOS/platform.m b/apple/iOS/platform.m index 54d166eb93..1d0cd4dd28 100644 --- a/apple/iOS/platform.m +++ b/apple/iOS/platform.m @@ -73,7 +73,7 @@ const void* apple_get_frontend_settings(void) // Input helpers: This is kept here because it needs objective-c static void handle_touch_event(NSArray* touches) { - int i; + NSUInteger i; const float scale = [[UIScreen mainScreen] scale]; g_current_input_data.touch_count = 0;