From 4b5612954f12a9ee69d2997434d9f4f1b4e0ad13 Mon Sep 17 00:00:00 2001 From: toaster Date: Tue, 11 Jul 2023 22:48:41 +0100 Subject: [PATCH] Scrunch up generic font by default EXTREMELY popular, has positive effects across the entire game Doesn't apply to console --- src/v_video.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/v_video.cpp b/src/v_video.cpp index 7d8d00abe..5c06f45e8 100644 --- a/src/v_video.cpp +++ b/src/v_video.cpp @@ -2276,6 +2276,12 @@ static void V_GetFontSpecification(int fontno, INT32 flags, fontspec_t *result) else result->dim_fn = VariableCharacterDim; break; + case HU_FONT: + if (result->chw) + result->dim_fn = CenteredCharacterDim; + else + result->dim_fn = BunchedCharacterDim; + break; case KART_FONT: if (result->chw) result->dim_fn = FixedCharacterDim;