This commit is contained in:
twinaphex 2017-05-21 17:10:53 +02:00
parent c92bf4d5e8
commit e49c71b142

View File

@ -248,7 +248,8 @@ unsigned menu_event(uint64_t input, uint64_t trigger_input)
trigger_input = 0;
ok_trigger = 0;
}
else
{
if (trigger_input & (UINT64_C(1) << RETRO_DEVICE_ID_JOYPAD_UP))
ret = MENU_ACTION_UP;
else if (trigger_input & (UINT64_C(1) << RETRO_DEVICE_ID_JOYPAD_DOWN))
@ -275,6 +276,7 @@ unsigned menu_event(uint64_t input, uint64_t trigger_input)
ret = MENU_ACTION_INFO;
else if (trigger_input & (UINT64_C(1) << RARCH_MENU_TOGGLE))
ret = MENU_ACTION_TOGGLE;
}
if (menu_event_kb_is_set(RETROK_F11))
{