Add check to only use the re-release menu font when a mod is not actively overriding it
This commit is contained in:
parent
aa8fcb0296
commit
e20ee6c854
1 changed files with 1 additions and 1 deletions
|
@ -1236,7 +1236,7 @@ void R2D_Font_Changed(void)
|
||||||
#endif
|
#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);
|
font_menu = Font_LoadFont("qfont", 20, 1, r_font_postprocess_outline.ival, flags);
|
||||||
else
|
else
|
||||||
font_menu = NULL;
|
font_menu = NULL;
|
||||||
|
|
Loading…
Reference in a new issue