From 7358f4344f95586c77efdbf4291aee70bbe7d1ae Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Sun, 16 May 2021 10:53:38 +0200 Subject: [PATCH] - pause the game when app is not active. --- source/core/gamecontrol.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/core/gamecontrol.cpp b/source/core/gamecontrol.cpp index 036217f20..0beea4a0c 100644 --- a/source/core/gamecontrol.cpp +++ b/source/core/gamecontrol.cpp @@ -1043,7 +1043,7 @@ int RunGame() void updatePauseStatus() { // This must go through the network in multiplayer games. - if (M_Active() || System_WantGuiCapture()) + if (M_Active() || System_WantGuiCapture() || !AppActive) { paused = 1; }