mirror of
https://github.com/OpenMW/openmw.git
synced 2025-01-30 18:45:38 +00:00
Fix signed/unsigned mismatch
This commit is contained in:
parent
c746a8abb7
commit
fe1523d16d
1 changed files with 1 additions and 1 deletions
|
@ -164,7 +164,7 @@ namespace Crash
|
||||||
|
|
||||||
if (frozen)
|
if (frozen)
|
||||||
{
|
{
|
||||||
TerminateProcess(mAppProcessHandle, -1);
|
TerminateProcess(mAppProcessHandle, 0xDEAD);
|
||||||
std::string message = "OpenMW appears to have frozen.\nCrash log saved to '" + std::string(mShm->mStartup.mLogFilePath) + "'.\nPlease report this to https://gitlab.com/OpenMW/openmw/issues !";
|
std::string message = "OpenMW appears to have frozen.\nCrash log saved to '" + std::string(mShm->mStartup.mLogFilePath) + "'.\nPlease report this to https://gitlab.com/OpenMW/openmw/issues !";
|
||||||
SDL_ShowSimpleMessageBox(0, "Fatal Error", message.c_str(), nullptr);
|
SDL_ShowSimpleMessageBox(0, "Fatal Error", message.c_str(), nullptr);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue