mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Consistently use *err for the Error i18n category
This commit is contained in:
parent
d7eba2061e
commit
70d9e6cecb
1 changed files with 3 additions and 3 deletions
|
@ -695,11 +695,11 @@ void EmuScreen::update(InputState &input) {
|
|||
quit_ = true;
|
||||
return;
|
||||
}
|
||||
I18NCategory *g = GetI18NCategory("Error");
|
||||
std::string errLoadingFile = g->T("Error loading file", "Could not load game");
|
||||
I18NCategory *err = GetI18NCategory("Error");
|
||||
std::string errLoadingFile = err->T("Error loading file", "Could not load game");
|
||||
|
||||
errLoadingFile.append(" ");
|
||||
errLoadingFile.append(g->T(errorMessage_.c_str()));
|
||||
errLoadingFile.append(err->T(errorMessage_.c_str()));
|
||||
|
||||
screenManager()->push(new PromptScreen(errLoadingFile, "OK", ""));
|
||||
errorMessage_ = "";
|
||||
|
|
Loading…
Add table
Reference in a new issue