mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
HUD: fix alignment of 2P level timer and power-ups
This commit is contained in:
parent
454850d349
commit
36bbf08ab0
2 changed files with 4 additions and 4 deletions
|
|
@ -90,10 +90,10 @@ void K_drawKartPowerUps(void)
|
|||
switch (r_splitscreen)
|
||||
{
|
||||
case 0:
|
||||
return { make_drawer(307, 55, Draw::Font::kZVote), "PWRU", -17, 7, -35, -1 };
|
||||
return { make_drawer(307, 58, Draw::Font::kZVote), "PWRU", -17, 7, -35, -1 };
|
||||
|
||||
case 1:
|
||||
return { make_drawer(318, viewnum == 0 ? 55 : 155, Draw::Font::kPing), "PWRS", -9, 6, -19, -1 };
|
||||
return { make_drawer(318, viewnum == 0 ? 58 : 147, Draw::Font::kPing), "PWRS", -9, 6, -19, -1 };
|
||||
}
|
||||
|
||||
// 3/4P
|
||||
|
|
|
|||
|
|
@ -27,11 +27,11 @@ void K_drawKart2PTimestamp(void)
|
|||
{
|
||||
if (R_GetViewNumber() == 0)
|
||||
{
|
||||
return Draw(286, 31).flags(V_SNAPTOTOP);
|
||||
return Draw(287, 33).flags(V_SNAPTOTOP);
|
||||
}
|
||||
else
|
||||
{
|
||||
return Draw(286, 163).flags(V_SNAPTOBOTTOM);
|
||||
return Draw(287, 156).flags(V_SNAPTOBOTTOM);
|
||||
}
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue