From 3ba6c84663e9b3e52f8c4257c41e10c035de19d5 Mon Sep 17 00:00:00 2001 From: Roman Fomin Date: Sat, 30 Nov 2024 13:04:26 +0700 Subject: [PATCH] load stcfnt even without SBARDEF --- src/st_stuff.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/st_stuff.c b/src/st_stuff.c index 31600548..8ef5232e 100644 --- a/src/st_stuff.c +++ b/src/st_stuff.c @@ -31,7 +31,6 @@ #include "doomtype.h" #include "hu_command.h" #include "hu_obituary.h" -#include "i_system.h" #include "i_video.h" #include "info.h" #include "m_array.h" @@ -1805,6 +1804,9 @@ void ST_Init(void) { sbardef = ST_ParseSbarDef(); + stcfnt = LoadSTCFN(); + hu_font = stcfnt->characters; + if (!sbardef) { return; @@ -1812,9 +1814,6 @@ void ST_Init(void) LoadFacePatches(); - stcfnt = LoadSTCFN(); - hu_font = stcfnt->characters; - HU_InitCrosshair(); HU_InitCommandHistory(); HU_InitObituaries();