Debugger: Prevent dummy reads from triggering breakpoints

This commit is contained in:
Souryo 2016-12-04 11:26:21 -05:00
parent 33ca8cb3f5
commit 52c1d160fe

View File

@ -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;