-fixed wiiflow not updating the language completely until reboot

This commit is contained in:
fix94.1 2013-08-04 16:53:15 +00:00
parent 508e56b1fb
commit 76b7ad1d6b
3 changed files with 15 additions and 6 deletions

View File

@ -2105,21 +2105,30 @@ void CMenu::_drawBg(void)
void CMenu::_updateText(void)
{
_textSource();
_textPluginSettings();
_textCategorySettings();
_textCheatSettings();
_textSystem();
_textMain();
_textError();
_textConfig();
_textConfig3();
_textConfigScreen();
_textConfig4();
_textConfigSnd();
_textConfigAdv();
_textDownload();
_textConfigSnd();
_textGame();
_textDownload();
_textCode();
_textWBFS();
_textGameSettings();
_textCategorySettings();
_textSystem();
_textNandEmu();
_textHome();
_textExitTo();
_textBoot();
_textCoverBanner();
_textExplorer();
_textWad();
}
const wstringEx CMenu::_fmt(const char *key, const wchar_t *def)

View File

@ -858,7 +858,6 @@ private:
void _textSystem(void);
void _textMain(void);
void _textError(void);
void _textYesNo(void);
void _textConfig(void);
void _textConfig3(void);
void _textConfigScreen(void);

View File

@ -156,6 +156,7 @@ int CMenu::_configAdv(void)
m_curLanguage = CMenu::_translations[lang];
m_loc.load(fmt("%s/%s.ini", m_languagesDir.c_str(), lowerCase(m_curLanguage).c_str()));
}
_hideConfigAdv();
_updateText();
_showConfigAdv();
}