From 15ff670a48046651c40896b4939fdd5b468fe885 Mon Sep 17 00:00:00 2001 From: toaster Date: Tue, 27 Jun 2023 17:32:03 +0100 Subject: [PATCH] Reduce space width of Level Select high/low fonts - fancy fonts shouldn't be monospace --- src/v_video.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/v_video.cpp b/src/v_video.cpp index d25778061..ae65de142 100644 --- a/src/v_video.cpp +++ b/src/v_video.cpp @@ -2286,7 +2286,7 @@ void V_DrawStringScaled( break; case LSHI_FONT: case LSLOW_FONT: - spacew = 16; + spacew = 10; break; case OPPRF_FONT: spacew = 5; @@ -2579,7 +2579,7 @@ fixed_t V_StringScaledWidth( break; case LSHI_FONT: case LSLOW_FONT: - spacew = 16; + spacew = 10; break; case OPPRF_FONT: spacew = 5;