Remove useless if.

This commit is contained in:
The Dax 2013-08-30 13:38:59 -04:00
parent 3426c9cb2c
commit e859b79948

View File

@ -373,10 +373,7 @@ void NativeInit(int argc, const char *argv[],
i18nrepo.LoadIni(g_Config.languageIni);
I18NCategory *d = GetI18NCategory("DesktopUI");
g_Config.sFont = d->T("Font");
if(g_Config.sFont == "Font")
g_Config.sFont = "Trebuchet MS";
g_Config.sFont = d->T("Font", "Trebuchet MS");
if (!boot_filename.empty() && stateToLoad != NULL)
SaveState::Load(stateToLoad);