Fix scaling of walls that are skewed by a slope, part 2

This commit is contained in:
Lactozilla 2023-11-26 03:56:19 -03:00
parent 6f4d1b43ea
commit 87d99fe84c

View file

@ -2082,7 +2082,6 @@ void R_StoreWallRange(INT32 start, INT32 stop)
}
rw_toptexturemid = FixedMul(rw_toptexturemid, rw_toptexturescaley);
rw_toptextureslide = FixedMul(rw_toptextureslide, rw_toptexturescaley);
}
// check BOTTOM TEXTURE
@ -2123,7 +2122,6 @@ void R_StoreWallRange(INT32 start, INT32 stop)
}
rw_bottomtexturemid = FixedMul(rw_bottomtexturemid, rw_bottomtexturescaley);
rw_bottomtextureslide = FixedMul(rw_bottomtextureslide, rw_bottomtexturescaley);
}
rw_toptexturemid += toprowoffset;