make sure to load language on startup

This commit is contained in:
dborth 2010-01-29 00:58:05 +00:00
parent 98aedae304
commit 409caa732e
2 changed files with 2 additions and 0 deletions

View File

@ -23,6 +23,7 @@ void InfoPrompt(const char * msg);
void ShowAction (const char *msg);
void CancelAction();
void ShowProgress (const char *msg, int done, int total);
void ResetText();
enum
{

View File

@ -577,5 +577,6 @@ bool LoadPrefs()
if(prefFound)
FixInvalidSettings();
ResetText();
return prefFound;
}