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:
toaster 2018-07-30 22:07:28 +01:00
parent 7f509c7c27
commit 057bc41203

View file

@ -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)
{