mirror of https://github.com/PCSX2/pcsx2.git
Merge pull request #1174 from NZJenkins/stepOut-Fix
StepOut breakpoint fix
This commit is contained in:
commit
1718d07f94
|
@ -458,6 +458,8 @@ void DisassemblyDialog::stepOut()
|
||||||
{
|
{
|
||||||
if (!r5900Debug.isAlive() || !r5900Debug.isCpuPaused() || currentCpu == NULL)
|
if (!r5900Debug.isAlive() || !r5900Debug.isCpuPaused() || currentCpu == NULL)
|
||||||
return;
|
return;
|
||||||
|
// If the current PC is on a breakpoint, the user doesn't want to do nothing.
|
||||||
|
CBreakPoints::SetSkipFirst(r5900Debug.getPC());
|
||||||
|
|
||||||
u32 addr = currentCpu->getStepOutAddress();
|
u32 addr = currentCpu->getStepOutAddress();
|
||||||
if (addr == (u32)-1)
|
if (addr == (u32)-1)
|
||||||
|
|
Loading…
Reference in New Issue