From e20ee6c8544f2582c6f5d42a0cdc40e7342a8878 Mon Sep 17 00:00:00 2001 From: Marco Cawthorne Date: Sat, 24 Jun 2023 15:03:28 -0700 Subject: [PATCH] Add check to only use the re-release menu font when a mod is not actively overriding it --- engine/client/r_2d.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/client/r_2d.c b/engine/client/r_2d.c index 8348da40b..6bd035f9e 100644 --- a/engine/client/r_2d.c +++ b/engine/client/r_2d.c @@ -1236,7 +1236,7 @@ void R2D_Font_Changed(void) #endif } - if (COM_FCheckExists("fonts/qfont.kfont")) + if (COM_FDepthFile("fonts/qfont.kfont", true) <= COM_FDepthFile("gfx/mainmenu.lmp", true)) font_menu = Font_LoadFont("qfont", 20, 1, r_font_postprocess_outline.ival, flags); else font_menu = NULL;