From 532a726ae36a943d614a148afc3767d8a118229d Mon Sep 17 00:00:00 2001 From: Rachael Alexanderson Date: Sat, 7 Jan 2023 07:18:52 -0500 Subject: [PATCH] - respect i_pauseinbackground setting --- source/core/gamecontrol.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/source/core/gamecontrol.cpp b/source/core/gamecontrol.cpp index 0ecc54851..4263ab8ce 100644 --- a/source/core/gamecontrol.cpp +++ b/source/core/gamecontrol.cpp @@ -98,6 +98,7 @@ CVARD(Bool, hud_textfont, false, CVAR_ARCHIVE, "Use the regular text font as rep EXTERN_CVAR(Bool, ui_generic) EXTERN_CVAR(String, language) +EXTERN_CVAR(Bool, i_pauseinbackground) CUSTOM_CVAR(Int, mouse_capturemode, 1, CVAR_GLOBALCONFIG | CVAR_ARCHIVE) { @@ -1187,7 +1188,10 @@ void updatePauseStatus() // This must go through the network in multiplayer games. if (M_Active() || System_WantGuiCapture() || !AppActive) { - paused = 1; + if (i_pauseinbackground) + paused = 1; + else if (!pausedWithKey) + paused = 0; } else if (!M_Active() || !System_WantGuiCapture()) {