Scrunch up generic font by default

EXTREMELY popular, has positive effects across the entire game
Doesn't apply to console
This commit is contained in:
toaster 2023-07-11 22:48:41 +01:00
parent 631336db39
commit 4b5612954f

View file

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