- Fixed: The ANIMATED parser must read the bytes for the speed as unsigned bytes.

- Fixed: The screen wipe must be disabled for Heretic's underwater ending. If
  not, the wipe will try to mix pictures with different palettes.


SVN r435 (trunk)
This commit is contained in:
Christoph Oelckers 2007-01-02 09:51:04 +00:00
commit 6a89d3594a
8 changed files with 216 additions and 210 deletions

View file

@ -586,7 +586,7 @@ void D_Display (bool screenshot)
NetUpdate (); // send out any new accumulation
if (!wipe || screenshot)
if (!wipe || screenshot || NoWipe < 0)
{
// normal update
C_DrawConsole (); // draw console
@ -2273,7 +2273,7 @@ void D_DoomMain (void)
// turbo option // [RH] (now a cvar)
{
UCVarValue value;
UCVarValue value;
static char one_hundred[] = "100";
value.String = Args.CheckValue ("-turbo");