- pause the game when app is not active.

This commit is contained in:
Christoph Oelckers 2021-05-16 10:53:38 +02:00
parent f2d75d4146
commit 7358f4344f
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}