mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-10 23:01:59 +00:00
- Fixed: DEM_WIPEON/OFF commands should be ignored during demo playback and
not pause the game, or the whole thing will be out of sync. SVN r489 (trunk)
This commit is contained in:
parent
6040bc1f84
commit
4de9e98fd1
2 changed files with 3 additions and 1 deletions
|
@ -1,4 +1,6 @@
|
|||
February 19, 2007
|
||||
- Fixed: DEM_WIPEON/OFF commands should be ignored during demo playback and
|
||||
not pause the game, or the whole thing will be out of sync.
|
||||
- Fixed: Playing a demo in windowed mode no longer grabs the mouse.
|
||||
|
||||
February 14, 2007
|
||||
|
|
|
@ -72,7 +72,7 @@ void P_Ticker (void)
|
|||
r_NoInterpolate = true;
|
||||
|
||||
// run the tic
|
||||
if (paused || playerswiping || P_CheckTickerPaused())
|
||||
if (paused || (playerswiping && !demoplayback) || P_CheckTickerPaused())
|
||||
return;
|
||||
|
||||
S_ResumeSound ();
|
||||
|
|
Loading…
Reference in a new issue