mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Fix dropped else in tab rankings view, leading to the exiting text being drawn on top of other text for no good reason.
This commit is contained in:
parent
bc9da8ee31
commit
36ebe5d116
1 changed files with 1 additions and 1 deletions
|
|
@ -1363,7 +1363,7 @@ void HU_DrawTabRankings(INT32 x, INT32 y, playersort_t *tab, INT32 scorelines, I
|
|||
V_DrawRightAlignedString(x, y-4, hilicol, "FIN");
|
||||
V_DrawRightAlignedString(x+rightoffset, y, hilicol, timestring(players[tab[i].num].realtime));
|
||||
}
|
||||
if (players[tab[i].num].pflags & PF_TIMEOVER)
|
||||
else if (players[tab[i].num].pflags & PF_TIMEOVER)
|
||||
V_DrawRightAlignedThinString(x+rightoffset, y-1, 0, "TIME OVER...");
|
||||
else if (circuitmap)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue