clarify that an error message is *not a crash*

This commit is contained in:
Fabian Greffrath 2025-05-15 09:45:26 +02:00
parent 81bf1e70c7
commit cfe4431875

View File

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