- Fixed a typo in 1 pixel tall support addition.

Found by Clang -Wparentheses warning.
This commit is contained in:
Edoardo Prezioso 2016-11-01 09:59:59 +01:00 committed by GitHub
parent 5df21fda68
commit 46a311b23c
1 changed files with 1 additions and 1 deletions

View File

@ -1909,7 +1909,7 @@ void R_DrawTiltedPlane (visplane_t *pl, double _xscale, double _yscale, fixed_t
{ {
plane_sv[2] = plane_sv[1] = plane_sv[0] = 0; plane_sv[2] = plane_sv[1] = plane_sv[0] = 0;
} }
if (ds_xbits = 0) if (ds_xbits == 0)
{ {
plane_su[2] = plane_su[1] = plane_su[0] = 0; plane_su[2] = plane_su[1] = plane_su[0] = 0;
} }