mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-13 12:14:16 +01:00
fix: clarify crash message
This commit is contained in:
parent
0887e7e2cf
commit
7a573eaf62
1 changed files with 10 additions and 11 deletions
|
|
@ -208,6 +208,7 @@ LONG exception_handler(EXCEPTION_POINTERS* ex)
|
|||
|
||||
log << std::format(L"Unhandled native exception occurred at {}", to_address_string(ex->ContextRecord->Rip, false)) << std::endl;
|
||||
log << std::format(L"Code: {:X}", ex->ExceptionRecord->ExceptionCode) << std::endl;
|
||||
log << std::format(L"Dump at: {}", dmp_path) << std::endl;
|
||||
log << L"Time: " << std::chrono::zoned_time{ std::chrono::current_zone(), std::chrono::system_clock::now() } << std::endl;
|
||||
|
||||
SymRefreshModuleList(GetCurrentProcess());
|
||||
|
|
@ -225,10 +226,8 @@ LONG exception_handler(EXCEPTION_POINTERS* ex)
|
|||
CloseHandle(file);
|
||||
|
||||
auto msg = L"An error within the game has occurred and Dalamud has caught it.\n\n"
|
||||
L"This could be caused by a faulty plugin.\n"
|
||||
L"Please report this issue on our Discord - more information has been recorded separately.\n\n"
|
||||
L"The crash dump file is located at:\n"
|
||||
L"{0}\n\n"
|
||||
L"This may be caused by a faulty plugin, a broken TexTools modification, any other third-party tool or simply a bug in the game.\n"
|
||||
L"You can report this issue on our Discord - more information has been recorded separately.\n\n"
|
||||
L"The log file is located at:\n"
|
||||
L"{1}\n\n"
|
||||
L"Press OK to exit the application.";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue