From b67894586fa75f7d5093ac0e2e6ee82d8b95c80b Mon Sep 17 00:00:00 2001 From: Douglas Christman Date: Mon, 9 Dec 2019 23:14:47 +0800 Subject: [PATCH] (Menu) Analog stick controls menu even if autoconfig disabled Fixes #9089 and #8192 --- retroarch.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/retroarch.c b/retroarch.c index 9663e09e67..a35a0ae76d 100644 --- a/retroarch.c +++ b/retroarch.c @@ -15447,9 +15447,11 @@ static void input_menu_keys_pressed(input_bits_t *p_new_state, for (i = 0; i < max_users; i++) { struct retro_keybind *auto_binds = input_autoconf_binds[i]; + struct retro_keybind *general_binds = input_config_binds[i]; binds[i] = input_config_binds[i]; input_push_analog_dpad(auto_binds, ANALOG_DPAD_LSTICK); + input_push_analog_dpad(general_binds, ANALOG_DPAD_LSTICK); } for (port = 0; port < port_max; port++) @@ -15550,7 +15552,9 @@ static void input_menu_keys_pressed(input_bits_t *p_new_state, for (i = 0; i < max_users; i++) { struct retro_keybind *auto_binds = input_autoconf_binds[i]; + struct retro_keybind *general_binds = input_config_binds[i]; input_pop_analog_dpad(auto_binds); + input_pop_analog_dpad(general_binds); } if (!display_kb)