summaryrefslogtreecommitdiffstats
path: root/src/core/arm/arm_interface.cpp
diff options
context:
space:
mode:
authormerry <git@mary.rs>2022-07-17 23:41:28 +0200
committerGitHub <noreply@github.com>2022-07-17 23:41:28 +0200
commit09300abe924aba145c9bcfcbb202254c20fa8673 (patch)
tree97987776d6d3391fe0b88fe1893b906ac62f5866 /src/core/arm/arm_interface.cpp
parentMerge pull request #8508 from yuzu-emu/mc-speed-limit (diff)
parentdynarmic: Abort watchpoints ASAP (diff)
downloadyuzu-09300abe924aba145c9bcfcbb202254c20fa8673.tar
yuzu-09300abe924aba145c9bcfcbb202254c20fa8673.tar.gz
yuzu-09300abe924aba145c9bcfcbb202254c20fa8673.tar.bz2
yuzu-09300abe924aba145c9bcfcbb202254c20fa8673.tar.lz
yuzu-09300abe924aba145c9bcfcbb202254c20fa8673.tar.xz
yuzu-09300abe924aba145c9bcfcbb202254c20fa8673.tar.zst
yuzu-09300abe924aba145c9bcfcbb202254c20fa8673.zip
Diffstat (limited to '')
-rw-r--r--src/core/arm/arm_interface.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/core/arm/arm_interface.cpp b/src/core/arm/arm_interface.cpp
index cef79b245..e72b250be 100644
--- a/src/core/arm/arm_interface.cpp
+++ b/src/core/arm/arm_interface.cpp
@@ -147,7 +147,6 @@ void ARM_Interface::Run() {
// Notify the debugger and go to sleep if a watchpoint was hit.
if (Has(hr, watchpoint)) {
- RewindBreakpointInstruction();
if (system.DebuggerEnabled()) {
system.GetDebugger().NotifyThreadWatchpoint(current_thread, *HaltedWatchpoint());
}