Fix Polymost HOM

git-svn-id: https://svn.eduke32.com/eduke32@7408 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
terminx 2019-03-19 17:08:23 +00:00
parent 2ec041b10e
commit b61027086c

View file

@ -3720,6 +3720,9 @@ static void polymost_domost(float x0, float y0, float x1, float y1, float y0top
y1 += DOMOST_OFFSET; //necessary?
}
x0 -= DOMOST_OFFSET;
x1 += DOMOST_OFFSET;
// Test if span is outside screen bounds
if (x1+DOMOST_OFFSET < xbl || x0-DOMOST_OFFSET > xbr)
{