make sure to load language on startup

This commit is contained in:
dborth 2010-01-29 00:57:37 +00:00
parent fa85d135dc
commit c92fb73119
2 changed files with 2 additions and 0 deletions

View File

@ -21,6 +21,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

@ -629,5 +629,6 @@ bool LoadPrefs()
if(strcmp(GCSettings.CheatFolder, "snes9x/cheats") == 0)
sprintf(GCSettings.CheatFolder, "snes9xgx/cheats");
ResetText();
return prefFound;
}