- fix commit 532a726ae3 - i_pauseinbackground is not supposed to bypass menu/console pause

This commit is contained in:
Rachael Alexanderson 2023-01-27 03:02:13 -05:00
parent 6864e1a9a8
commit 2778ee72cd

View file

@ -1188,7 +1188,11 @@ int RunGame()
void updatePauseStatus()
{
// This must go through the network in multiplayer games.
if (M_Active() || System_WantGuiCapture() || !AppActive)
if (M_Active() || System_WantGuiCapture())
{
paused = 1;
}
else if (!AppActive)
{
if (i_pauseinbackground)
paused = 1;