mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Use thin string for times in Sound Test
Much, much closer to monospace without taking up too much presence
This commit is contained in:
parent
57d5e54983
commit
0f6ddefe30
1 changed files with 2 additions and 2 deletions
|
|
@ -8359,7 +8359,7 @@ void M_DrawSoundTest(void)
|
|||
{
|
||||
UINT32 currenttime = min(Music_Elapsed(tune), Music_TotalDuration(tune));
|
||||
|
||||
V_DrawRightAlignedMenuString(x + 272-1, 18+32, 0,
|
||||
V_DrawRightAlignedThinString(x + 272-1, 18+32, 0,
|
||||
va("%02u:%02u",
|
||||
G_TicsToMinutes(currenttime, true),
|
||||
G_TicsToSeconds(currenttime)
|
||||
|
|
@ -8373,7 +8373,7 @@ void M_DrawSoundTest(void)
|
|||
{
|
||||
UINT32 exittime = Music_TotalDuration(tune);
|
||||
|
||||
V_DrawRightAlignedMenuString(x + 272-1, 18+32+10, 0,
|
||||
V_DrawRightAlignedThinString(x + 272-1, 18+32+10, 0,
|
||||
va("%02u:%02u",
|
||||
G_TicsToMinutes(exittime, true),
|
||||
G_TicsToSeconds(exittime)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue