Skip to content

Commit

Permalink
More appropriate MsgBox severity class. Amend 2caf268
Browse files Browse the repository at this point in the history
  • Loading branch information
lhog committed Dec 1, 2024
1 parent 2caf268 commit 8e52d29
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rts/Game/Game.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -521,7 +521,7 @@ void CGame::Load(const std::string& mapFileName)
spring::exitCode = spring::EXIT_CODE_NOLOAD;

if (!contentErrors.empty())
ErrorMessageBox(fmt::format("Errors:\n{}", fmt::join(contentErrors, "\n")).c_str(), "Recoil: caught content_error(s)", MBF_OK | MBF_EXCL);
ErrorMessageBox(fmt::format("Errors:\n{}", fmt::join(contentErrors, "\n")).c_str(), "Recoil: caught content_error(s)", MBF_OK | MBF_CRASH);

loadDone = true;
globalQuit = globalQuit | forcedQuit;
Expand Down

0 comments on commit 8e52d29

Please sign in to comment.