mirror of
https://github.com/CTCaer/RetroArch.git
synced 2025-01-26 21:36:26 +00:00
Update menu_keys_pressed
This commit is contained in:
parent
6235a5cd0d
commit
8f30b3e706
@ -694,6 +694,14 @@ uint64_t input_menu_keys_pressed(void)
|
||||
for (i = 0; i < RARCH_BIND_LIST_END; i++)
|
||||
{
|
||||
bool state = false;
|
||||
#if 0
|
||||
if (((!input_driver_block_libretro_input && ((i < RARCH_FIRST_META_KEY)))
|
||||
|| !input_driver_block_hotkey) && current_input->key_pressed)
|
||||
state = current_input->key_pressed(current_input_data, i);
|
||||
|
||||
if (i >= RARCH_FIRST_META_KEY)
|
||||
state |= current_input->meta_key_pressed(current_input_data, i);
|
||||
#else
|
||||
if (((((!input_driver_block_libretro_input && ((i < RARCH_FIRST_META_KEY)))
|
||||
|| !input_driver_block_hotkey) && current_input->key_pressed))
|
||||
&& settings->input.binds[0][i].valid)
|
||||
@ -705,6 +713,7 @@ uint64_t input_menu_keys_pressed(void)
|
||||
if (i >= RARCH_FIRST_META_KEY && settings->input.binds[0][i].valid)
|
||||
state |= input_joypad_pressed(input_driver_get_joypad_driver(),
|
||||
0, settings->input.binds[0], i);
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_OVERLAY
|
||||
state |= input_overlay_key_pressed(i);
|
||||
|
Loading…
x
Reference in New Issue
Block a user