mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-01-14 11:50:49 +00:00
- Exhumed: 'paused' should not be part of the 'in a game' check.
Fixes #209
This commit is contained in:
parent
5fc8859342
commit
d4198a5b1a
1 changed files with 1 additions and 1 deletions
|
@ -632,7 +632,7 @@ void EraseScreen(int nVal)
|
||||||
|
|
||||||
bool GameInterface::CanSave()
|
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()
|
::GameStats GameInterface::getStats()
|
||||||
|
|
Loading…
Reference in a new issue