mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-04-28 04:51:42 +00:00
Fix a one character bug with clipping
This commit is contained in:
parent
3f0f645c70
commit
ec0f30f849
1 changed files with 1 additions and 1 deletions
|
|
@ -5215,7 +5215,7 @@ static void HWR_ProjectSprite(mobj_t *thing)
|
||||||
z2 = z1 + offset * ang_scalez;
|
z2 = z1 + offset * ang_scalez;
|
||||||
tx += offset * ang_scale;
|
tx += offset * ang_scale;
|
||||||
}
|
}
|
||||||
if (papersprite && max(z1, z1) < ZCLIP_PLANE)
|
if (papersprite && max(z1, z2) < ZCLIP_PLANE)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
x2 = gr_windowcenterx + (tx * gr_centerx / tz);
|
x2 = gr_windowcenterx + (tx * gr_centerx / tz);
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue