[Debugger] If stepping ops already, ignore finding a memory BreakPoint
This commit is contained in:
parent
5434f57f3f
commit
e1c464e309
|
@ -3018,6 +3018,10 @@ void R4300iOp::UnknownOpcode()
|
||||||
|
|
||||||
bool R4300iOp::MemoryBreakpoint()
|
bool R4300iOp::MemoryBreakpoint()
|
||||||
{
|
{
|
||||||
|
if (g_Settings->LoadBool(Debugger_SteppingOps))
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
g_Settings->SaveBool(Debugger_SteppingOps, true);
|
g_Settings->SaveBool(Debugger_SteppingOps, true);
|
||||||
g_Debugger->WaitForStep();
|
g_Debugger->WaitForStep();
|
||||||
if (SkipOp())
|
if (SkipOp())
|
||||||
|
|
Loading…
Reference in New Issue