mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-24 10:40:46 +00:00
- fixed: Exhumed did not pause when the console was open.
This commit is contained in:
parent
0e1eeea037
commit
ae9ad6612c
1 changed files with 5 additions and 1 deletions
|
@ -2317,7 +2317,7 @@ GAMELOOP:
|
|||
{
|
||||
static bool frameJustDrawn;
|
||||
bInMove = kTrue;
|
||||
if (!bPause && totalclock >= tclocks + 4)
|
||||
if (!bPause && totalclock >= tclocks + 4 && !GUICapture)
|
||||
{
|
||||
do
|
||||
{
|
||||
|
@ -2350,6 +2350,10 @@ GAMELOOP:
|
|||
} while (levelnew < 0 && totalclock >= tclocks + 4);
|
||||
} while (0);
|
||||
}
|
||||
else if (GUICapture || bPause)
|
||||
{
|
||||
totalclock = tclocks + 4;
|
||||
}
|
||||
bInMove = kFalse;
|
||||
|
||||
faketimerhandler();
|
||||
|
|
Loading…
Reference in a new issue