Skip to content

Commit

Permalink
Fix: Don't force the Player to exit when the Language is not found on…
Browse files Browse the repository at this point in the history
… "SelectLanguage" (EasyRPG#3213)
  • Loading branch information
florianessl committed Feb 3, 2025
1 parent 35df8b6 commit 0a58022
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/translation.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ void Translation::SelectLanguage(StringView lang_id)
if (!lang_id.empty()) {
auto root = GetRootTree();
if (!root) {
Output::Error("Cannot load translation. 'Language' folder does not exist");
Output::Warning("Cannot load translation. 'Language' folder does not exist");
return;
}

Expand Down

0 comments on commit 0a58022

Please # to comment.