From c9ee96010b15ff23c4de458d47dfbbee0929a632 Mon Sep 17 00:00:00 2001 From: minenice55 Date: Tue, 14 Oct 2025 22:58:06 -0400 Subject: [PATCH] idem for minirankings --- src/k_hud.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/k_hud.c b/src/k_hud.c index 5ec05bfc7..561050f8e 100644 --- a/src/k_hud.c +++ b/src/k_hud.c @@ -2141,10 +2141,12 @@ static boolean K_drawKartPositionFaces(void) else { INT32 pos = players[rankplayer[i]].position; - if (pos < 0 || pos > MAXPLAYERS) - pos = 0; + // Draws the little number over the face - V_DrawScaledPatch(FACE_X-5, Y+10, V_HUDTRANS|V_SNAPTOLEFT, kp_facenum[pos]); + if (pos < 0 || pos > 16) + V_DrawPingNum(FACE_X+2, Y+10, V_HUDTRANS|V_SNAPTOLEFT, pos, NULL); + else + V_DrawScaledPatch(FACE_X-5, Y+10, V_HUDTRANS|V_SNAPTOLEFT, kp_facenum[pos]); } Y -= 18;