mirror of
https://github.com/id-Software/DOOM-3-BFG.git
synced 2024-12-03 09:22:45 +00:00
Merge pull request #21 from DanielGibson/quickfix-pause
Also check for com_pause when USE_DOOMCLASSIC
This commit is contained in:
commit
44cc05651c
1 changed files with 1 additions and 1 deletions
|
@ -490,7 +490,7 @@ void idCommonLocal::Frame()
|
|||
// DG: Add pause from com_pause cvar
|
||||
// RB begin
|
||||
#if defined(USE_DOOMCLASSIC)
|
||||
if( console->Active() || Dialog().IsDialogActive() || session->IsSystemUIShowing()
|
||||
if( com_pause.GetInteger() || console->Active() || Dialog().IsDialogActive() || session->IsSystemUIShowing()
|
||||
|| ( game && game->InhibitControls() && !IsPlayingDoomClassic() ) )
|
||||
#else
|
||||
if( com_pause.GetInteger() || console->Active() || Dialog().IsDialogActive() || session->IsSystemUIShowing()
|
||||
|
|
Loading…
Reference in a new issue