From e53fe8c316210e0309f98b0fb44e4ed6028c1bc9 Mon Sep 17 00:00:00 2001 From: Sally Coolatta Date: Tue, 28 Jul 2020 04:49:34 -0400 Subject: [PATCH] Fix player 2's position num in 2P --- src/k_hud.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/k_hud.c b/src/k_hud.c index 73e4d376d..1d6b79f3b 100644 --- a/src/k_hud.c +++ b/src/k_hud.c @@ -1377,7 +1377,7 @@ static void K_DrawKartPositionNum(INT32 num) } else // if we're not p1, that means we're p2. display this at the bottom right, below the minimap. { - fy = BASEVIDHEIGHT - 8; + fy = (BASEVIDHEIGHT/2) - 8; fflags = V_SNAPTOBOTTOM|V_SNAPTORIGHT|V_SPLITSCREEN; } }