1
0
mirror of https://github.com/blawar/GLideN64.git synced 2024-07-07 03:13:49 +00:00

Change default font from "comic" to "arial"

This commit is contained in:
Sergey Lipskiy 2015-02-05 21:22:01 +06:00
parent dc423a1b72
commit 553eb76efb

View File

@ -166,7 +166,7 @@ void Config_LoadConfig()
//#Font settings
config.font.name = ConfigGetParamString(g_configVideoGliden64, "fontName");
if (config.font.name.empty())
config.font.name = "comic.ttf";
config.font.name = "arial.ttf";
char buf[16];
sprintf(buf, "0x%s", ConfigGetParamString(g_configVideoGliden64, "fontColor"));
long int uColor = strtol(buf, NULL, 16);