- fixed incomplete font initialization.

This commit is contained in:
Christoph Oelckers 2020-10-24 21:02:00 +02:00
parent 9a6a98ada9
commit aeda977bc2
2 changed files with 2 additions and 0 deletions

View file

@ -819,6 +819,7 @@ void V_InitFonts()
BigFont = OriginalBigFont;
}
AlternativeSmallFont = OriginalSmallFont;
AlternativeBigFont = OriginalBigFont;
}
void V_LoadTranslations()

View file

@ -882,6 +882,7 @@ int RunGame()
videoInit();
D_CheckNetGame();
UpdateGenericUI(ui_generic);
MainLoop();
return 0; // this is never reached. MainLoop only exits via exception.
}