From 9b8fb4cac5746cb02ee8e949e674e8dd31a5b882 Mon Sep 17 00:00:00 2001 From: Twinaphex Date: Tue, 30 Sep 2014 16:38:30 +0200 Subject: [PATCH] (Apple) Reimplement apple_bind_button_pressed --- input/apple_input.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/input/apple_input.c b/input/apple_input.c index b290ce9d98..2908b4c2d6 100644 --- a/input/apple_input.c +++ b/input/apple_input.c @@ -619,7 +619,8 @@ static bool apple_bind_button_pressed(void *data, int key) const struct retro_keybind *binds = g_settings.input.binds[0]; apple_input_data_t *apple = (apple_input_data_t*)data; - return apple_is_pressed(apple, 0, binds, key); + return apple_is_pressed(apple, 0, binds, key) || + input_joypad_pressed(apple->joypad, 0, g_settings.input.binds[0], key); } static void apple_input_free_input(void *data)