From 057bc4120305a112ce57f4380c03ea8145feabb6 Mon Sep 17 00:00:00 2001 From: toaster <rollerorbital@gmail.com> Date: Mon, 30 Jul 2018 22:07:28 +0100 Subject: [PATCH] Fix dropped else in tab rankings view, leading to the exiting text being drawn on top of other text for no good reason. --- src/hu_stuff.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hu_stuff.c b/src/hu_stuff.c index fd71470b..dd08d26e 100644 --- a/src/hu_stuff.c +++ b/src/hu_stuff.c @@ -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) {