- 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:
Randy Heit 2007-02-20 00:05:42 +00:00
parent 6040bc1f84
commit 4de9e98fd1
2 changed files with 3 additions and 1 deletions

View File

@ -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

View File

@ -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 ();