Merge branch 'ignore-glsegs' into linedef-args

This commit is contained in:
Alam Ed Arias 2020-01-06 09:59:16 -05:00
commit 585d7252ce

View file

@ -3774,11 +3774,13 @@ static void HWR_Subsector(size_t num)
if (!line->glseg
#ifdef POLYOBJECTS
&& !line->polyseg // ignore segs that belong to polyobjects
&& !line->polyseg // ignore segs that belong to polyobjects
#endif
)
)
{
HWR_AddLine(line);
line++;
}
line++;
}
}