summaryrefslogtreecommitdiff
path: root/Source/Core/DolphinWX/Debugger/CodeWindow.cpp
diff options
context:
space:
mode:
authorcomex <comexk@gmail.com>2014-10-29 17:23:56 -0400
committercomex <comexk@gmail.com>2014-10-29 17:23:56 -0400
commiteb22adf24a7b9cdd823f6643a6ba51327be2354a (patch)
tree609cf7ddea60751b1e8141b0b5a141cfd678fa2a /Source/Core/DolphinWX/Debugger/CodeWindow.cpp
parentd2990bc70a84e7f4155a94e9023da93e7e54755a (diff)
parent55f91ecba4ba59c1393744cbe3b0da3a7f5929d9 (diff)
Merge pull request #1433 from rohit-n/fix-warnings
DolphinWX: Fix a few warnings.
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();