mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-01-16 03:32:33 +00:00
Merge branch 'fix-splitscreen-huds' into 'master'
Only draw variant gametype HUDs for view 0 Closes #1566 and #1565 See merge request kart-krew-dev/ring-racers-internal!2623
This commit is contained in:
commit
aab81d9d2d
1 changed files with 5 additions and 6 deletions
|
|
@ -7640,13 +7640,12 @@ void K_drawKartHUD(void)
|
|||
{
|
||||
K_DrawKartPositionNum(stplyr->position);
|
||||
}
|
||||
}
|
||||
|
||||
K_drawKartTeamScores(false, 0);
|
||||
|
||||
if (K_InRaceDuel())
|
||||
{
|
||||
K_drawKartDuelScores();
|
||||
if (R_GetViewNumber() == 0)
|
||||
{
|
||||
K_drawKartTeamScores(false, 0);
|
||||
K_drawKartDuelScores();
|
||||
}
|
||||
}
|
||||
|
||||
if (LUA_HudEnabled(hud_gametypeinfo))
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue