DolphinWX: Remove unused variable.
This commit is contained in:
parent
049afc4315
commit
b70a75776e
|
@ -342,7 +342,6 @@ void CCodeWindow::StepOut()
|
||||||
PowerPC::CoreMode oldMode = PowerPC::GetMode();
|
PowerPC::CoreMode oldMode = PowerPC::GetMode();
|
||||||
PowerPC::SetMode(PowerPC::MODE_INTERPRETER);
|
PowerPC::SetMode(PowerPC::MODE_INTERPRETER);
|
||||||
UGeckoInstruction inst = Memory::Read_Instruction(PC);
|
UGeckoInstruction inst = Memory::Read_Instruction(PC);
|
||||||
GekkoOPInfo* opinfo = GetOpInfo(inst);
|
|
||||||
while (inst.hex != 0x4e800020 && steps < timeout) // check for blr
|
while (inst.hex != 0x4e800020 && steps < timeout) // check for blr
|
||||||
{
|
{
|
||||||
if (inst.LK)
|
if (inst.LK)
|
||||||
|
@ -361,7 +360,6 @@ void CCodeWindow::StepOut()
|
||||||
++steps;
|
++steps;
|
||||||
}
|
}
|
||||||
inst = Memory::Read_Instruction(PC);
|
inst = Memory::Read_Instruction(PC);
|
||||||
opinfo = GetOpInfo(inst);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
PowerPC::SingleStep();
|
PowerPC::SingleStep();
|
||||||
|
|
Loading…
Reference in New Issue