just say the game crashed instead of us

This commit is contained in:
mat 2023-12-30 23:16:34 -03:00 committed by GitHub
parent 157261171b
commit 138b3ac6b5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -264,7 +264,7 @@ static LONG WINAPI exceptionHandler(LPEXCEPTION_POINTERS info) {
auto text = crashlog::writeCrashlog(faultyMod, getInfo(info, faultyMod), getStacktrace(info->ContextRecord), getRegisters(info->ContextRecord));
MessageBoxA(nullptr, text.c_str(), "Geode Crashed", MB_ICONERROR);
MessageBoxA(nullptr, text.c_str(), "Geometry Dash Crashed", MB_ICONERROR);
return EXCEPTION_CONTINUE_SEARCH;
}