mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-02-15 01:56:51 +00:00
Fix 4P accessibility icons (close enough)
This commit is contained in:
parent
da2a1dfd77
commit
a333806da4
1 changed files with 15 additions and 1 deletions
|
|
@ -3718,6 +3718,11 @@ static void K_drawKartTeamScores(void)
|
|||
*/
|
||||
}
|
||||
|
||||
static boolean K_DrawingLaps()
|
||||
{
|
||||
return (numlaps != 1 && !K_InRaceDuel() && (UINT16)stplyr->exp != UINT16_MAX);
|
||||
}
|
||||
|
||||
static boolean K_drawKartLaps(void)
|
||||
{
|
||||
INT32 splitflags = V_SNAPTOBOTTOM|V_SNAPTOLEFT|V_SPLITSCREEN;
|
||||
|
|
@ -4157,7 +4162,16 @@ static void K_drawKartAccessibilityIcons(boolean gametypeinfoshown, INT32 fx)
|
|||
}
|
||||
else
|
||||
{
|
||||
fx = LAPS_X+44;
|
||||
fx = LAPS_X + 33;
|
||||
|
||||
if ((gametyperules & (GTR_BUMPERS|GTR_CIRCUIT)) == GTR_BUMPERS)
|
||||
fx -= 14;
|
||||
|
||||
if (K_DrawingLaps())
|
||||
{
|
||||
fx += 30;
|
||||
}
|
||||
|
||||
fy = LAPS_Y;
|
||||
if (R_GetViewNumber() & 1) // If we are not P1 or P3...
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue