Use "tiny timer" font if you have >=1000 wins on a Profile

This commit is contained in:
toaster 2025-08-28 16:46:42 +01:00
parent ae21a8266d
commit daf32c5eab

View file

@ -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);
}