mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-04-27 12:31:54 +00:00
Use "tiny timer" font if you have >=1000 wins on a Profile
This commit is contained in:
parent
ae21a8266d
commit
daf32c5eab
1 changed files with 3 additions and 1 deletions
|
|
@ -2383,7 +2383,9 @@ void M_DrawProfileCard(INT32 x, INT32 y, boolean greyedout, profile_t *p)
|
||||||
if (p != NULL)
|
if (p != NULL)
|
||||||
{
|
{
|
||||||
V_DrawFixedPatch((x+30)*FRACUNIT, (y+84)*FRACUNIT, FRACUNIT, 0, pwrlv, colormap);
|
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);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue