mirror of
https://github.com/tildearrow/furnace.git
synced 2024-11-15 17:25:06 +00:00
finally
This commit is contained in:
parent
cdcf87c773
commit
957e35af0b
1 changed files with 32 additions and 0 deletions
32
extern/backward/backward.hpp
vendored
32
extern/backward/backward.hpp
vendored
|
@ -4490,6 +4490,38 @@ private:
|
||||||
|
|
||||||
printer.address = true;
|
printer.address = true;
|
||||||
printer.print(st, std::cerr);
|
printer.print(st, std::cerr);
|
||||||
|
|
||||||
|
#ifdef _WIN32
|
||||||
|
MessageBox(NULL,"Furnace has crashed! please report this to the issue tracker immediately:\r\nhttps://github.com/tildearrow/furnace/issues/new\r\n\r\na file called furnace_crash.txt will be created in your user directory.\r\nthis will be important for locating the origin of the crash.","Error",MB_OK|MB_ICONERROR);
|
||||||
|
std::string crashLocation;
|
||||||
|
char* userProfile=getenv("USERPROFILE");
|
||||||
|
if (userProfile==NULL) {
|
||||||
|
crashLocation="furnace_crash.txt";
|
||||||
|
} else {
|
||||||
|
crashLocation=userProfile;
|
||||||
|
crashLocation+="\\furnace_crash.txt";
|
||||||
|
}
|
||||||
|
FILE* crashDump=fopen(crashLocation.c_str(),"w");
|
||||||
|
#else
|
||||||
|
FILE* crashDump=fopen("/tmp/furnace_crash.txt","w");
|
||||||
|
#endif
|
||||||
|
|
||||||
|
if (crashDump!=NULL) {
|
||||||
|
Printer printer;
|
||||||
|
printer.address = true;
|
||||||
|
printer.print(st, crashDump);
|
||||||
|
fclose(crashDump);
|
||||||
|
} else {
|
||||||
|
#ifdef _WIN32
|
||||||
|
std::string str;
|
||||||
|
//Printer failedPrinter;
|
||||||
|
//failedPrinter.address = true;
|
||||||
|
//failedPrinter.print(st, str);
|
||||||
|
str+="\r\ncould not open furnace_crash.txt!\r\nplease take a screenshot of this error message box!";
|
||||||
|
fprintf(stderr,"NOTICE: could not open furnace_crash.txt!\n");
|
||||||
|
MessageBox(NULL,str.c_str(),"Error",MB_OK|MB_ICONERROR);
|
||||||
|
#endif
|
||||||
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue