From fe177975ca259aff3b8cca803a1b69e527a5312f Mon Sep 17 00:00:00 2001 From: toaster Date: Tue, 30 Oct 2018 22:44:05 +0000 Subject: [PATCH] Fix ping alignment. --- 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 603c4e40..16f68802 100644 --- a/src/hu_stuff.c +++ b/src/hu_stuff.c @@ -2296,7 +2296,7 @@ void HU_DrawTabRankings(INT32 x, INT32 y, playersort_t *tab, INT32 scorelines, I if (netgame // don't draw it offline && tab[i].num != serverplayer) - HU_drawPing(x + rightoffset + ((scorelines > 8) ? 13 : -27), y+2, playerpingtable[tab[i].num], false); + HU_drawPing(x + ((i < 8) ? -19 : rightoffset + 13), y+2, playerpingtable[tab[i].num], false); if (scorelines > 8) strlcpy(strtime, tab[i].name, 6);