HUD: do not show position number in splitscreen FREE PLAY

This commit is contained in:
James R 2023-10-03 21:27:48 -07:00
parent 8284aff4f1
commit 35cb0e4c5c

View file

@ -5486,7 +5486,11 @@ void K_drawKartHUD(void)
islonesome = K_drawKartPositionFaces(); islonesome = K_drawKartPositionFaces();
} }
else if (r_splitscreen == 1) else
{
islonesome = M_NotFreePlay() == false;
if (r_splitscreen == 1)
{ {
if (LUA_HudEnabled(hud_time)) if (LUA_HudEnabled(hud_time))
{ {
@ -5500,6 +5504,7 @@ void K_drawKartHUD(void)
K_drawKart4PTimestamp(); K_drawKart4PTimestamp();
} }
} }
}
if (!stplyr->spectator && !demo.freecam) // Bottom of the screen elements, don't need in spectate mode if (!stplyr->spectator && !demo.freecam) // Bottom of the screen elements, don't need in spectate mode
{ {