mirror of
https://github.com/CTCaer/RetroArch.git
synced 2024-12-29 14:13:19 +00:00
(Android) Overlay next button should work now along with other
overlay state inputs
This commit is contained in:
parent
269698661a
commit
97ab249625
@ -481,7 +481,7 @@ static int16_t android_input_state(void *data, const struct retro_keybind **bind
|
||||
|
||||
static bool android_input_key_pressed(void *data, int key)
|
||||
{
|
||||
return (g_extern.lifecycle_state & (1ULL << key));
|
||||
return ((g_extern.lifecycle_state | driver.overlay_state) & (1ULL << key));
|
||||
}
|
||||
|
||||
static void android_input_free_input(void *data)
|
||||
|
Loading…
Reference in New Issue
Block a user