mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-04 15:19:09 +00:00
Add consideration for the break flag of memChecks
It was never used, even when the code tried to make sure it was initialised and passed correctly. This is a supplementary fix for the memCheck dialog as this option will now work correctly.
This commit is contained in:
parent
efb7b1ceca
commit
5e8fc4ebd9
1 changed files with 2 additions and 2 deletions
|
@ -218,8 +218,8 @@ bool TMemCheck::Action(DebugInterface* debug_interface, u32 iValue, u32 addr, bo
|
||||||
debug_interface->GetDescription(pc).c_str(), write ? "Write" : "Read", size * 8,
|
debug_interface->GetDescription(pc).c_str(), write ? "Write" : "Read", size * 8,
|
||||||
size * 2, iValue, addr, debug_interface->GetDescription(addr).c_str());
|
size * 2, iValue, addr, debug_interface->GetDescription(addr).c_str());
|
||||||
}
|
}
|
||||||
|
if (Break)
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue