From f48995a1e1b5cecc6f64125486a3af832c7145c8 Mon Sep 17 00:00:00 2001 From: zilmar Date: Sat, 14 Apr 2018 11:49:06 +1000 Subject: [PATCH] [Project64] CDebuggerUI::CPUStepStarted should not be testing read memory Breakpoints --- Source/Project64/UserInterface/Debugger/Debugger.cpp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/Source/Project64/UserInterface/Debugger/Debugger.cpp b/Source/Project64/UserInterface/Debugger/Debugger.cpp index 1b08f6372..69ef3cfe4 100644 --- a/Source/Project64/UserInterface/Debugger/Debugger.cpp +++ b/Source/Project64/UserInterface/Debugger/Debugger.cpp @@ -403,11 +403,6 @@ void CDebuggerUI::CPUStepStarted() if (opInfo.IsLoadCommand()) // Read instructions { m_ScriptSystem->HookCPURead()->InvokeByParamInRange(memoryAddress); - - if (m_Breakpoints->ReadBPExists8(memoryAddress)) - { - goto breakpoint_hit; - } } else // Write instructions {