mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-10 23:01:59 +00:00
- fixed: P_FindFloorCeiling may not use the floorsector returned by P_LineOpening when only checking 3D-floors because it will be NULL.
SVN r3547 (trunk)
This commit is contained in:
parent
6089347161
commit
d81542752a
1 changed files with 1 additions and 1 deletions
|
@ -149,7 +149,7 @@ static bool PIT_FindFloorCeiling (line_t *ld, const FBoundingBox &box, FCheckPos
|
||||||
if (open.bottom > tmf.floorz)
|
if (open.bottom > tmf.floorz)
|
||||||
{
|
{
|
||||||
tmf.floorz = open.bottom;
|
tmf.floorz = open.bottom;
|
||||||
tmf.floorsector = open.bottomsec;
|
if (open.bottomsec != NULL) tmf.floorsector = open.bottomsec;
|
||||||
tmf.touchmidtex = open.touchmidtex;
|
tmf.touchmidtex = open.touchmidtex;
|
||||||
tmf.abovemidtex = open.abovemidtex;
|
tmf.abovemidtex = open.abovemidtex;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue