summaryrefslogtreecommitdiff
path: root/Source/Core/DolphinWX/Debugger/CodeWindow.cpp
diff options
context:
space:
mode:
authorRohit Nirmal <rohitnirmal9@gmail.com>2014-10-28 21:02:47 -0500
committerRohit Nirmal <rohitnirmal9@gmail.com>2014-10-28 21:02:47 -0500
commitb70a75776e7ad152cdab86b34c39b1a5b9482184 (patch)
tree1406964ea34dcc638383e2c1371249376b20d870 /Source/Core/DolphinWX/Debugger/CodeWindow.cpp
parent049afc4315d7c5838185f002593d5b28e7c90a3c (diff)
DolphinWX: Remove unused variable.
Diffstat (limited to 'Source/Core/DolphinWX/Debugger/CodeWindow.cpp')
-rw-r--r--Source/Core/DolphinWX/Debugger/CodeWindow.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/Source/Core/DolphinWX/Debugger/CodeWindow.cpp b/Source/Core/DolphinWX/Debugger/CodeWindow.cpp
index 35678e43dd..4989cecff0 100644
--- a/Source/Core/DolphinWX/Debugger/CodeWindow.cpp
+++ b/Source/Core/DolphinWX/Debugger/CodeWindow.cpp
@@ -342,7 +342,6 @@ void CCodeWindow::StepOut()
PowerPC::CoreMode oldMode = PowerPC::GetMode();
PowerPC::SetMode(PowerPC::MODE_INTERPRETER);
UGeckoInstruction inst = Memory::Read_Instruction(PC);
- GekkoOPInfo* opinfo = GetOpInfo(inst);
while (inst.hex != 0x4e800020 && steps < timeout) // check for blr
{
if (inst.LK)
@@ -361,7 +360,6 @@ void CCodeWindow::StepOut()
++steps;
}
inst = Memory::Read_Instruction(PC);
- opinfo = GetOpInfo(inst);
}
PowerPC::SingleStep();