mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-10 23:01:50 +00:00
- fixed: 3DMidtextures did not work correctly in sectors with slopes.
SVN r3120 (trunk)
This commit is contained in:
parent
6056393af7
commit
a8167b3110
1 changed files with 2 additions and 1 deletions
|
@ -740,7 +740,8 @@ bool PIT_CheckLine (line_t *ld, const FBoundingBox &box, FCheckPosition &tm)
|
|||
// so don't mess around with the z-position
|
||||
if (ld->frontsector->floorplane==ld->backsector->floorplane &&
|
||||
ld->frontsector->floorplane==tm.thing->Sector->floorplane &&
|
||||
!ld->frontsector->e->XFloor.ffloors.Size() && !ld->backsector->e->XFloor.ffloors.Size())
|
||||
!ld->frontsector->e->XFloor.ffloors.Size() && !ld->backsector->e->XFloor.ffloors.Size() &&
|
||||
!open.abovemidtex)
|
||||
{
|
||||
open.bottom=INT_MIN;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue