iOS: Fix another signed/unsigned mismatch warning
This commit is contained in:
parent
402a08f554
commit
a8345b217b
|
@ -73,7 +73,7 @@ const void* apple_get_frontend_settings(void)
|
||||||
// Input helpers: This is kept here because it needs objective-c
|
// Input helpers: This is kept here because it needs objective-c
|
||||||
static void handle_touch_event(NSArray* touches)
|
static void handle_touch_event(NSArray* touches)
|
||||||
{
|
{
|
||||||
int i;
|
NSUInteger i;
|
||||||
const float scale = [[UIScreen mainScreen] scale];
|
const float scale = [[UIScreen mainScreen] scale];
|
||||||
|
|
||||||
g_current_input_data.touch_count = 0;
|
g_current_input_data.touch_count = 0;
|
||||||
|
|
Loading…
Reference in New Issue