mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
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:
parent
631336db39
commit
4b5612954f
1 changed files with 6 additions and 0 deletions
|
|
@ -2276,6 +2276,12 @@ static void V_GetFontSpecification(int fontno, INT32 flags, fontspec_t *result)
|
||||||
else
|
else
|
||||||
result->dim_fn = VariableCharacterDim;
|
result->dim_fn = VariableCharacterDim;
|
||||||
break;
|
break;
|
||||||
|
case HU_FONT:
|
||||||
|
if (result->chw)
|
||||||
|
result->dim_fn = CenteredCharacterDim;
|
||||||
|
else
|
||||||
|
result->dim_fn = BunchedCharacterDim;
|
||||||
|
break;
|
||||||
case KART_FONT:
|
case KART_FONT:
|
||||||
if (result->chw)
|
if (result->chw)
|
||||||
result->dim_fn = FixedCharacterDim;
|
result->dim_fn = FixedCharacterDim;
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue