From 30c789bfc28882df1571586a9eb9b0579a256a64 Mon Sep 17 00:00:00 2001 From: NepDisk Date: Sat, 21 Feb 2026 12:48:37 -0500 Subject: [PATCH] Don't additive position num normally --- 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 f37c33f69..585049238 100644 --- a/src/k_hud.c +++ b/src/k_hud.c @@ -1899,7 +1899,7 @@ static void K_DrawKartPositionNum(INT32 num) patch_t *localpatch = kp_positionnum[0][0]; INT32 fx = 0, fy = 0, fflags = 0; INT32 xoffs = (cv_showinput.value > 0) ? -48 : 0; - INT32 addOrSub = V_ADD; + INT32 addOrSub = 0; boolean flipdraw = false; // flip the order we draw it in for MORE splitscreen bs. fun. boolean flipvdraw = false; // used only for 2p splitscreen so overtaking doesn't make 1P's position fly off the screen. boolean overtake = false;