Fix FOF intersections in multitagging for the software renderer.

This commit is contained in:
Nev3r 2020-07-29 14:52:21 +02:00
parent c65ada7dd7
commit 3b55c9e940
1 changed files with 3 additions and 0 deletions

View File

@ -2141,6 +2141,9 @@ void R_StoreWallRange(INT32 start, INT32 stop)
for (r2 = frontsector->ffloors; r2; r2 = r2->next)
{
if (r2->master == rover->master) // Skip if same control line.
continue;
if (!(r2->flags & FF_EXISTS) || !(r2->flags & FF_RENDERSIDES))
continue;