distinguish error exits from success exits

This commit is contained in:
Fabian Greffrath 2025-05-15 18:18:35 +02:00
parent dd94081ac0
commit d8c7ce1a69

View File

@ -87,7 +87,9 @@ void I_ErrorMsg()
SDL_ShowSimpleMessageBox(exit_code == 0 ?
SDL_MESSAGEBOX_INFORMATION :
SDL_MESSAGEBOX_ERROR,
PROJECT_STRING ": Error message (this is not a \"crash\")", errmsg, NULL);
exit_code == 0 ?
PROJECT_STRING :
PROJECT_STRING ": Error message (this is not a \"crash\"!)", errmsg, NULL);
}
}