diff --git a/apple/OSX/platform.m b/apple/OSX/platform.m index 5bd3fca086..6cf6065c94 100644 --- a/apple/OSX/platform.m +++ b/apple/OSX/platform.m @@ -78,11 +78,11 @@ void apple_rarch_exited(void) for (i = 1; i < ch.length; i ++) apple_input_keyboard_event(event_type == NSKeyDown, - 0, [ch characterAtIndex:i], mod, false); + 0, [ch characterAtIndex:i], mod); } apple_input_keyboard_event(event_type == NSKeyDown, - event.keyCode, character, mod, false); + event.keyCode, character, mod); } break; case NSFlagsChanged: @@ -93,7 +93,7 @@ void apple_rarch_exited(void) old_flags = new_flags; apple_input_keyboard_event(down, event.keyCode, - 0, event.modifierFlags, false); + 0, event.modifierFlags); } break; case NSMouseMoved: diff --git a/input/keyboard_event_apple.c b/input/keyboard_event_apple.c index e143ff1387..829eee866a 100644 --- a/input/keyboard_event_apple.c +++ b/input/keyboard_event_apple.c @@ -159,5 +159,5 @@ void apple_input_keyboard_event(bool down, input_keyboard_event(down, input_keymaps_translate_keysym_to_rk(code), - character, (enum retro_mod)mod, false); + character, (enum retro_mod)mod); }