(Android) Overlay next button should work now along with other

overlay state inputs
This commit is contained in:
twinaphex 2012-12-23 15:29:54 +01:00
parent 269698661a
commit 97ab249625

View File

@ -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)