mirror of
https://github.com/libretro/RetroArch
synced 2025-02-28 12:40:23 +00:00
Use BIT64_SET
This commit is contained in:
parent
5081d03194
commit
c14c4cd394
@ -2338,7 +2338,9 @@ static enum runloop_state runloop_check_state(
|
||||
((settings->uints.input_menu_toggle_gamepad_combo != INPUT_TOGGLE_NONE) &&
|
||||
input_driver_toggle_button_combo(
|
||||
settings->uints.input_menu_toggle_gamepad_combo, last_input)))
|
||||
current_input |= (UINT64_C(1) << RARCH_MENU_TOGGLE);
|
||||
{
|
||||
BIT64_SET(current_input, RARCH_MENU_TOGGLE);
|
||||
}
|
||||
#endif
|
||||
|
||||
if (input_driver_flushing_input)
|
||||
|
Loading…
x
Reference in New Issue
Block a user