We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 098fe99 commit 3d007f9Copy full SHA for 3d007f9
1 file changed
input/input_driver.c
@@ -5735,7 +5735,12 @@ static void input_keys_pressed(
5735
if ( bit_pressed
5736
|| BIT64_GET(lifecycle_state, i)
5737
|| input_keys_pressed_other_sources(input_st, i, p_new_state))
5738
+ {
5739
+ if (!(input_st->flags & INP_FLAG_MENU_PRESS_PENDING))
5740
+ input_st->flags &= ~INP_FLAG_MENU_PRESS_CANCEL;
5741
+
5742
input_st->flags |= INP_FLAG_MENU_PRESS_PENDING;
5743
+ }
5744
else if (input_st->flags & INP_FLAG_MENU_PRESS_PENDING)
5745
/* Also set 'enable_hotkey' to prevent hotkey delay untrigger */
5746
BIT256_SET_PTR(p_new_state, RARCH_ENABLE_HOTKEY);
0 commit comments