- Exhumed: 'paused' should not be part of the 'in a game' check.

Fixes #209
This commit is contained in:
Christoph Oelckers 2020-12-06 08:39:40 +01:00
parent 5fc8859342
commit d4198a5b1a

View file

@ -632,7 +632,7 @@ void EraseScreen(int nVal)
bool GameInterface::CanSave()
{
return gamestate == GS_LEVEL && !bRecord && !bPlayback && !paused && !bInDemo && nTotalPlayers == 1 && nFreeze == 0;
return gamestate == GS_LEVEL && !bRecord && !bPlayback && !bInDemo && nTotalPlayers == 1 && nFreeze == 0;
}
::GameStats GameInterface::getStats()