mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2025-01-31 05:20:51 +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
7f509c7c27
commit
057bc41203
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, y-4, hilicol, "FIN");
|
||||||
V_DrawRightAlignedString(x+rightoffset, y, hilicol, timestring(players[tab[i].num].realtime));
|
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...");
|
V_DrawRightAlignedThinString(x+rightoffset, y-1, 0, "TIME OVER...");
|
||||||
else if (circuitmap)
|
else if (circuitmap)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue