From 494ec1b3f9271816a1eb7d954b1d85186b0451dd Mon Sep 17 00:00:00 2001 From: nashmuhandes Date: Tue, 22 Aug 2023 07:49:34 +0800 Subject: [PATCH] Go back to the hex font for now --- src/common/fonts/v_font.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/common/fonts/v_font.cpp b/src/common/fonts/v_font.cpp index 0209c64e76..e27a82db14 100644 --- a/src/common/fonts/v_font.cpp +++ b/src/common/fonts/v_font.cpp @@ -875,12 +875,12 @@ void V_InitFonts() auto lump = fileSystem.CheckNumForFullName("newconsolefont.hex", 0); // This is always loaded from gzdoom.pk3 to prevent overriding it with incomplete replacements. if (lump == -1) I_FatalError("newconsolefont.hex not found"); // This font is needed - do not start up without it. NewConsoleFont = CreateHexLumpFont("NewConsoleFont", lump); - //NewSmallFont = CreateHexLumpFont2("NewSmallFont", lump); - + NewSmallFont = CreateHexLumpFont2("NewSmallFont", lump); + /* lump = fileSystem.CheckNumForFullName("newmenufont.ttf", 0); // This is always loaded from gzdoom.pk3 to prevent overriding it with incomplete replacements. if (lump == -1) I_FatalError("newmenufont.ttf not found"); // This font is needed - do not start up without it. NewSmallFont = CreateTTFFont("NewSmallFont", 18, lump); - + */ CurrentConsoleFont = NewConsoleFont; ConFont = V_GetFont("ConsoleFont", "CONFONT"); V_GetFont("IndexFont", "INDEXFON"); // detect potential replacements for this one.