mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +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.y = R_InterpolateFixed(ntplayer->mo->old_x, ntplayer->mo->x);
|
||||
v.z = 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_z, ntplayer->mo->z);
|
||||
|
||||
if (!(ntplayer->mo->eflags & MFE_VERTICALFLIP))
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue