mirror of
https://github.com/ZDoom/zdbsp.git
synced 2024-11-21 19:32:31 +00:00
- Fixed: Not finding a polyobject while looking for one was not handled, because the test condition was always true.
SVN r3986 (trunk)
This commit is contained in:
parent
18a2a6c138
commit
c5c3465ca5
1 changed files with 1 additions and 1 deletions
|
@ -322,7 +322,7 @@ void FNodeBuilder::FindPolyContainers (TArray<FPolyStart> &spots, TArray<FPolySt
|
|||
}
|
||||
}
|
||||
}
|
||||
if (closestseg >= 0)
|
||||
if (closestdist != FIXED_MAX)
|
||||
{
|
||||
loop = MarkLoop (closestseg, loop);
|
||||
P(Printf ("Found polyobj in sector %d (loop %d)\n", Segs[closestseg].frontsector,
|
||||
|
|
Loading…
Reference in a new issue