- Fixed: ShowErrorPane deleted the StartScreen instead of just calling

NetDone.
- moved the DIM_MAP define into v_palette.h so that it can be accessed
  from outside the status bar code.
- Fixed: The check for non-swimmable water in UpdateWaterLevel checked for
  SECF_UNDERWATER instead of SECF_UNDERWATERMASK.


SVN r514 (trunk)
This commit is contained in:
Christoph Oelckers 2007-04-22 07:45:18 +00:00
commit a370ea70c6
8 changed files with 14 additions and 12 deletions

View file

@ -3000,7 +3000,7 @@ bool AActor::UpdateWaterLevel (fixed_t oldz, bool dosplash)
}
// even non-swimmable deep water must be checked here to do the splashes correctly
// But the water level must be reset when this function returns!
if (!(hsec->MoreFlags&SECF_UNDERWATER)) reset=true;
if (!(hsec->MoreFlags&SECF_UNDERWATERMASK)) reset=true;
}
}