mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-13 07:57:51 +00:00
- fixed: Portals with disconnected parts were not grouped correctly.
This commit is contained in:
parent
8368272b4d
commit
dad89b0783
1 changed files with 2 additions and 1 deletions
|
@ -1024,7 +1024,8 @@ void P_CreateLinkedPortals()
|
||||||
{
|
{
|
||||||
if (sectors[i].GetPortalType(j) == PORTS_LINKEDPORTAL && sectors[i].PortalGroup == 0)
|
if (sectors[i].GetPortalType(j) == PORTS_LINKEDPORTAL && sectors[i].PortalGroup == 0)
|
||||||
{
|
{
|
||||||
CollectSectors(sectors[i].GetOppositePortalGroup(j), §ors[i]);
|
auto p = sectors[i].GetPortal(j);
|
||||||
|
CollectSectors(p->mOrigin->PortalGroup, §ors[i]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue