From daf32c5eab6d6cc8dda89ddc76b39692ee2ea286 Mon Sep 17 00:00:00 2001 From: toaster Date: Thu, 28 Aug 2025 16:46:42 +0100 Subject: [PATCH] Use "tiny timer" font if you have >=1000 wins on a Profile --- src/k_menudraw.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/k_menudraw.c b/src/k_menudraw.c index 31e76aa86..7503b6af9 100644 --- a/src/k_menudraw.c +++ b/src/k_menudraw.c @@ -2383,7 +2383,9 @@ void M_DrawProfileCard(INT32 x, INT32 y, boolean greyedout, profile_t *p) if (p != NULL) { V_DrawFixedPatch((x+30)*FRACUNIT, (y+84)*FRACUNIT, FRACUNIT, 0, pwrlv, colormap); - V_DrawCenteredTimerString(x+30, y+87, 0, va("%d", p->wins)); + K_DrawGameControl(x+30, y+87, 0, va("%d", p->wins), 1, + (p->wins >= 1000 ? TINYTIMER_FONT : TIMER_FONT), + 0); }