mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Fix missing 'else'
This commit is contained in:
parent
2b1d57257a
commit
e260ba4062
1 changed files with 1 additions and 1 deletions
|
@ -485,7 +485,7 @@ void ReportFinishScreen::ShowSuggestions() {
|
|||
const char *suggestion = nullptr;
|
||||
if (item == "Upgrade") {
|
||||
suggestion = rp->T("SuggestionUpgrade", "Upgrade to a newer PPSSPP build");
|
||||
} if (item == "Downgrade") {
|
||||
} else if (item == "Downgrade") {
|
||||
suggestion = rp->T("SuggestionDowngrade", "Downgrade to an older PPSSPP version (please report this bug)");
|
||||
} else if (item == "VerifyDisc") {
|
||||
suggestion = rp->T("SuggestionVerifyDisc", "Check your ISO is a good copy of your disc");
|
||||
|
|
Loading…
Add table
Reference in a new issue