mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-27 22:33:17 +00:00
- Fixed a typo in 1 pixel tall support addition.
Found by Clang -Wparentheses warning.
This commit is contained in:
parent
5df21fda68
commit
46a311b23c
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue