From 411b960e1ced807a0bba9fe215ab5178fed56a40 Mon Sep 17 00:00:00 2001 From: James R Date: Wed, 29 Mar 2023 00:33:28 -0700 Subject: [PATCH] devmode music: use half size font --- src/st_stuff.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/st_stuff.c b/src/st_stuff.c index 9911f719f..9774f36f0 100644 --- a/src/st_stuff.c +++ b/src/st_stuff.c @@ -362,8 +362,8 @@ static INT32 SCR(INT32 r) static void ST_pushDebugString(INT32 *height, const char *string) { - V_DrawRightAlignedString(320, *height, V_MONOSPACE, string); - *height -= 8; + V_DrawRightAlignedSmallString(319, *height, V_MONOSPACE, string); + *height -= 4; } static void ST_pushDebugTimeMS(INT32 *height, const char *label, UINT32 ms)