diff options
author | GPUCode <geoster3d@gmail.com> | 2023-11-20 17:56:54 +0100 |
---|---|---|
committer | t895 <clombardo169@gmail.com> | 2023-11-25 06:47:36 +0100 |
commit | 1cde01c8c8f4c7272f7f2db3846ff7403caa49e1 (patch) | |
tree | e077b2902007b6356cba93f5b5a4d966ee0cad31 /src | |
parent | patch: check offsets from first code word (diff) | |
download | yuzu-1cde01c8c8f4c7272f7f2db3846ff7403caa49e1.tar yuzu-1cde01c8c8f4c7272f7f2db3846ff7403caa49e1.tar.gz yuzu-1cde01c8c8f4c7272f7f2db3846ff7403caa49e1.tar.bz2 yuzu-1cde01c8c8f4c7272f7f2db3846ff7403caa49e1.tar.lz yuzu-1cde01c8c8f4c7272f7f2db3846ff7403caa49e1.tar.xz yuzu-1cde01c8c8f4c7272f7f2db3846ff7403caa49e1.tar.zst yuzu-1cde01c8c8f4c7272f7f2db3846ff7403caa49e1.zip |
Diffstat (limited to 'src')
-rw-r--r-- | src/core/arm/arm_interface.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/arm/arm_interface.cpp b/src/core/arm/arm_interface.cpp index 558fba5bd..d231bf89c 100644 --- a/src/core/arm/arm_interface.cpp +++ b/src/core/arm/arm_interface.cpp @@ -201,6 +201,8 @@ void ARM_Interface::Run() { if (True(hr & HaltReason::DataAbort)) { if (system.DebuggerEnabled()) { system.GetDebugger().NotifyThreadWatchpoint(current_thread, *HaltedWatchpoint()); + } else { + LogBacktrace(); } current_thread->RequestSuspend(SuspendType::Debug); break; |