mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
HUD: do not show position number in splitscreen FREE PLAY
This commit is contained in:
parent
8284aff4f1
commit
35cb0e4c5c
1 changed files with 13 additions and 8 deletions
21
src/k_hud.c
21
src/k_hud.c
|
|
@ -5486,18 +5486,23 @@ void K_drawKartHUD(void)
|
|||
|
||||
islonesome = K_drawKartPositionFaces();
|
||||
}
|
||||
else if (r_splitscreen == 1)
|
||||
else
|
||||
{
|
||||
if (LUA_HudEnabled(hud_time))
|
||||
islonesome = M_NotFreePlay() == false;
|
||||
|
||||
if (r_splitscreen == 1)
|
||||
{
|
||||
K_drawKart2PTimestamp();
|
||||
if (LUA_HudEnabled(hud_time))
|
||||
{
|
||||
K_drawKart2PTimestamp();
|
||||
}
|
||||
}
|
||||
}
|
||||
else if (viewnum == r_splitscreen)
|
||||
{
|
||||
if (LUA_HudEnabled(hud_time))
|
||||
else if (viewnum == r_splitscreen)
|
||||
{
|
||||
K_drawKart4PTimestamp();
|
||||
if (LUA_HudEnabled(hud_time))
|
||||
{
|
||||
K_drawKart4PTimestamp();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue