mirror of
https://github.com/open-goal/jak-project
synced 2026-09-03 02:14:07 -04:00
improve debugger disasm, :sym-name and fix Windows builds (#959)
* improve debugger disasm, `:sym-name` and fix Windows builds * >:( * use this inline constexpr thing?? * fine use strings then * please.... please work... * fix windows debugger oopsie * display rip as goal addr as well * [debugger] attempt to backtrace even if landed on some garbage memory * Update CMakePresets.json
This commit is contained in:
@@ -488,7 +488,7 @@ bool check_stopped(const ThreadID& tid, SignalInfo* out) {
|
||||
break;
|
||||
default:
|
||||
out->kind = SignalInfo::EXCEPTION;
|
||||
out->msg = fmt::format("{} [0x{:X}]", exc, win32_exception_code_to_charp(exc));
|
||||
out->msg = fmt::format("{} [0x{:X}]", win32_exception_code_to_charp(exc), exc);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user