Fix rendering gaps on polys with upper/lower textures

This commit is contained in:
fickleheart 2019-01-11 20:45:59 -06:00
parent e443285801
commit 87ede1e934

View file

@ -3093,8 +3093,9 @@ void R_StoreWallRange(INT32 start, INT32 stop)
else else
markceiling = false; markceiling = false;
// Don't render the ceiling again when rendering polyobjects // Don't mark ceiling flat lines for polys unless this line has an upper texture, otherwise we get flat leakage pulling downward
if (curline->polyseg) // (If it DOES have an upper texture and we do this, the ceiling won't render at all)
if (curline->polyseg && !curline->sidedef->toptexture)
markceiling = false; markceiling = false;
} }
@ -3106,8 +3107,9 @@ void R_StoreWallRange(INT32 start, INT32 stop)
else else
markfloor = false; markfloor = false;
// Don't render the floor again when rendering polyobjects // Don't mark floor flat lines for polys unless this line has a lower texture, otherwise we get flat leakage pulling upward
if (curline->polyseg) // (If it DOES have a lower texture and we do this, the floor won't render at all)
if (curline->polyseg && !curline->sidedef->bottomtexture)
markfloor = false; markfloor = false;
} }