use Arial as the font for display

This commit is contained in:
Amy G. Bowersox 2019-12-08 00:40:01 -07:00
parent 161a854502
commit fb42797d5a
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ HRESULT FontEng_setup(void)
return E_FAIL;
}
err = FT_New_Face(library, "/usr/local/share/fonts/opentype/Inconsolata.otf", 0, &stdfont);
err = FT_New_Face(library, "/usr/local/share/fonts/truetype/arial.ttf", 0, &stdfont);
if (err != 0)
{
Log(LFATAL, "Unable to load font (%d)", err);