mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-04-27 12:31:54 +00:00
Merge branch 'fix-nametag-distance-check' into 'master'
Fix nametags rendering inconsistently See merge request KartKrew/Kart!519
This commit is contained in:
commit
e9b2ccaedf
1 changed files with 2 additions and 2 deletions
|
|
@ -2850,8 +2850,8 @@ static void K_drawKartNameTags(void)
|
||||||
}
|
}
|
||||||
|
|
||||||
v.x = R_InterpolateFixed(ntplayer->mo->old_x, ntplayer->mo->x);
|
v.x = R_InterpolateFixed(ntplayer->mo->old_x, ntplayer->mo->x);
|
||||||
v.y = R_InterpolateFixed(ntplayer->mo->old_x, ntplayer->mo->x);
|
v.y = R_InterpolateFixed(ntplayer->mo->old_y, ntplayer->mo->y);
|
||||||
v.z = R_InterpolateFixed(ntplayer->mo->old_x, ntplayer->mo->x);
|
v.z = R_InterpolateFixed(ntplayer->mo->old_z, ntplayer->mo->z);
|
||||||
|
|
||||||
if (!(ntplayer->mo->eflags & MFE_VERTICALFLIP))
|
if (!(ntplayer->mo->eflags & MFE_VERTICALFLIP))
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue