From 9d3772b15e9bfbc5567bc53f1921b2ba7b9bb292 Mon Sep 17 00:00:00 2001 From: Sally Coolatta Date: Fri, 8 Sep 2023 19:05:03 -0400 Subject: [PATCH] Remove tens -> ones place push Looked better but broke splitscreen again while I wasn't looking, fuck this code --- src/k_hud.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/k_hud.c b/src/k_hud.c index f339cfcad..b8734468c 100644 --- a/src/k_hud.c +++ b/src/k_hud.c @@ -2003,8 +2003,6 @@ static fixed_t K_DrawKartPositionNumPatch(UINT8 num, UINT8 *color, fixed_t x, fi ); } - x += 7 * scale; // push the tens place towards the ones place - return x; } @@ -2133,8 +2131,7 @@ static void K_DrawKartPositionNum(UINT8 num) do { fixed_t w = SHORT(kp_positionnum[adjustNum % 10][0][splitIndex]->width) * scale; - fx += w; // these should be the reverse of the - fx -= 7 * scale; // x offsets in K_DrawKartPositionNumPatch + fx += w; adjustNum /= 10; } while (adjustNum); }