mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Fix lap display in duel
This commit is contained in:
parent
dcb4dea2fb
commit
bb51c2df4d
1 changed files with 4 additions and 2 deletions
|
|
@ -3010,7 +3010,9 @@ static void K_drawKartLaps(void)
|
||||||
V_DrawCenteredString(BASEVIDWIDTH/2, 5, flashflag, va("%d", stplyr->duelscore));
|
V_DrawCenteredString(BASEVIDWIDTH/2, 5, flashflag, va("%d", stplyr->duelscore));
|
||||||
}
|
}
|
||||||
|
|
||||||
if (numlaps != 1)
|
boolean drawinglaps = (numlaps != 1 && !K_InRaceDuel());
|
||||||
|
|
||||||
|
if (drawinglaps)
|
||||||
{
|
{
|
||||||
if (r_splitscreen > 1)
|
if (r_splitscreen > 1)
|
||||||
bump = 27;
|
bump = 27;
|
||||||
|
|
@ -3018,7 +3020,7 @@ static void K_drawKartLaps(void)
|
||||||
bump = 40;
|
bump = 40;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (numlaps != 1 && !K_InRaceDuel())
|
if (drawinglaps)
|
||||||
{
|
{
|
||||||
if (r_splitscreen > 1)
|
if (r_splitscreen > 1)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue