mirror of
https://github.com/libretro/Mesen.git
synced 2024-12-16 05:48:05 +00:00
Debugger: Prevent dummy reads from triggering breakpoints
This commit is contained in:
parent
33ca8cb3f5
commit
52c1d160fe
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user