- bug fix when changing language and showing hint button on game load

This commit is contained in:
SoftCoder 2014-01-18 16:31:01 -08:00
parent 0807d490ad
commit d2284bbd36
1 changed files with 4 additions and 0 deletions

View File

@ -135,6 +135,10 @@ void Logger::loadGameHints(string filePathEnglish,string filePathTranslation,boo
gameHintsTranslation.load(filePathTranslation,clearList);
showNextHint();
Lang &lang = Lang::getInstance();
buttonNextHint.setText(lang.getString("ShowNextHint","",true));
buttonCancel.setText(lang.getString("Cancel"));
GraphicComponent::applyAllCustomProperties("Loading");
SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",__FILE__,__FUNCTION__,__LINE__);
}