Use thin string for times in Sound Test

Much, much closer to monospace without taking up too much presence
This commit is contained in:
toaster 2024-03-10 12:25:11 +00:00
parent 57d5e54983
commit 0f6ddefe30

View file

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