- Fixed: If the sector behind a seg was closed, but it was closed between the

ceiling and floor of the front sector, the renderer did not add it to the
  solid clip list.
- Blends created with the ACS fade commands now degrade to transparent overlays
  when the console is visible, just as they do for the menu.


SVN r240 (trunk)
This commit is contained in:
Randy Heit 2006-07-09 20:04:05 +00:00
commit d027aafb4c
4 changed files with 28 additions and 1 deletions

View file

@ -748,6 +748,13 @@ void R_AddLine (seg_t *line)
{
solid = true;
}
// [RH] Check for completely closed back sector. This worked in
// 1.22, so I assume I accidentally broke it when I added slopes.
else if (rw_backcz1 <= rw_backfz1 && rw_backcz2 <= rw_backfz2)
{
solid = true;
doorclosed = true;
}
else if (
(backsector->ceilingpic != skyflatnum ||
frontsector->ceilingpic != skyflatnum)