mirror of
https://github.com/ZDoom/zdbsp.git
synced 2024-11-21 19:32:31 +00:00
- Fixed: Extra segs added to close GL subsectors incorrectly set the linedef to 0xFFFF instead of 0xFFFFFFFF.
SVN r3999 (trunk)
This commit is contained in:
parent
f8e3ce7d9a
commit
c18631cdd9
1 changed files with 1 additions and 1 deletions
|
@ -370,7 +370,7 @@ void FNodeBuilder::PushConnectingGLSeg (int subsector, TArray<MapSegGLEx> &segs,
|
|||
|
||||
newseg.v1 = v1;
|
||||
newseg.v2 = v2;
|
||||
newseg.linedef = NO_MAP_INDEX;
|
||||
newseg.linedef = NO_INDEX;
|
||||
newseg.side = 0;
|
||||
newseg.partner = DWORD_MAX;
|
||||
segs.Push (newseg);
|
||||
|
|
Loading…
Reference in a new issue