From 52c1d160fe782a973bf7bb7866c92241080c0592 Mon Sep 17 00:00:00 2001 From: Souryo Date: Sun, 4 Dec 2016 11:26:21 -0500 Subject: [PATCH] Debugger: Prevent dummy reads from triggering breakpoints --- Core/Debugger.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Core/Debugger.cpp b/Core/Debugger.cpp index 63dea80b..d4d4397e 100644 --- a/Core/Debugger.cpp +++ b/Core/Debugger.cpp @@ -368,7 +368,7 @@ void Debugger::PrivateProcessRamOperation(MemoryOperationType type, uint16_t &ad } } - if(!breakDone) { + if(!breakDone && type != MemoryOperationType::DummyRead) { BreakpointType breakpointType = BreakpointType::Execute; switch(type) { case MemoryOperationType::Read: breakpointType = BreakpointType::ReadRam; break;