SVN r67 (trunk)

This commit is contained in:
Christoph Oelckers 2006-04-24 14:26:06 +00:00
commit 9b5f9a1d70
8 changed files with 200 additions and 19 deletions

View file

@ -168,6 +168,13 @@ static BOOL PTR_TraceIterator (intercept_t *in)
else
{
entersector = (lineside == 0) ? in->d.line->backsector : in->d.line->frontsector;
// For backwards compatibility: Ignore lines with the same sector on both sides.
// This is the way Doom.exe did it and some WADs (e.g. Alien Vendetta MAP15 needs it.
if (compatflags & COMPATF_TRACE)
{
return true;
}
}
ff = CurSector->floorplane.ZatPoint (hitx, hity);