Browse Source

Only initialize DOS-version font when no message file specified

Lou Yihua 6 years ago
parent
commit
b77f9d6ed1
1 changed files with 1 additions and 1 deletions
  1. 1 1
      font.c

+ 1 - 1
font.c

@@ -253,7 +253,7 @@ PAL_InitFont(
 	const CONFIGURATION* cfg
 )
 {
-	if (!cfg->fIsWIN95)
+	if (!cfg->fIsWIN95 && !cfg->pszMsgFile)
 	{
 		PAL_LoadEmbeddedFont();
 	}