mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-25 03:00: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;
|
static bool frameJustDrawn;
|
||||||
bInMove = kTrue;
|
bInMove = kTrue;
|
||||||
if (!bPause && totalclock >= tclocks + 4)
|
if (!bPause && totalclock >= tclocks + 4 && !GUICapture)
|
||||||
{
|
{
|
||||||
do
|
do
|
||||||
{
|
{
|
||||||
|
@ -2350,6 +2350,10 @@ GAMELOOP:
|
||||||
} while (levelnew < 0 && totalclock >= tclocks + 4);
|
} while (levelnew < 0 && totalclock >= tclocks + 4);
|
||||||
} while (0);
|
} while (0);
|
||||||
}
|
}
|
||||||
|
else if (GUICapture || bPause)
|
||||||
|
{
|
||||||
|
totalclock = tclocks + 4;
|
||||||
|
}
|
||||||
bInMove = kFalse;
|
bInMove = kFalse;
|
||||||
|
|
||||||
faketimerhandler();
|
faketimerhandler();
|
||||||
|
|
Loading…
Reference in a new issue