mirror of
https://github.com/libretro/RetroArch
synced 2025-03-28 19:20:35 +00:00
Start unpause restriction.
This commit is contained in:
parent
f2c16bd8d6
commit
f441821297
@ -2728,7 +2728,7 @@ MSG_HASH(
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_SUBLABEL_PAUSE_ON_DISCONNECT,
|
||||
"Pause content when any controller is disconnected."
|
||||
"Pause content when any controller is disconnected. Resume with Start."
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_INPUT_BUTTON_AXIS_THRESHOLD,
|
||||
|
@ -7193,7 +7193,7 @@ static enum runloop_state_enum runloop_check_state(
|
||||
bool pause_pressed = BIT256_GET(current_bits, RARCH_PAUSE_TOGGLE);
|
||||
|
||||
/* Allow unpausing with Start */
|
||||
if (runloop_paused)
|
||||
if (runloop_paused && settings->bools.pause_on_disconnect)
|
||||
pause_pressed |= BIT256_GET(current_bits, RETRO_DEVICE_ID_JOYPAD_START);
|
||||
|
||||
#ifdef HAVE_CHEEVOS
|
||||
|
Loading…
x
Reference in New Issue
Block a user