diff options
author | Jonathan Hao <johnathan79717@gmail.com> | 2017-01-05 00:48:29 +0800 |
---|---|---|
committer | Yuri Kunde Schlesner <yuriks@yuriks.net> | 2017-01-04 13:48:29 -0300 |
commit | c18cb1b192d60499af3d68b244e86c8dd8f55200 (patch) | |
tree | 48c481884bb29dd7bde72694a6ed703bb416d7c3 /src/citra_qt/debugger/callstack.cpp | |
parent | 159bcbfdbc1022da92f9006ba9acb5d7f7405604 (diff) |
Fix some warnings (#2399)
Diffstat (limited to 'src/citra_qt/debugger/callstack.cpp')
-rw-r--r-- | src/citra_qt/debugger/callstack.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/citra_qt/debugger/callstack.cpp b/src/citra_qt/debugger/callstack.cpp index c1db935836..08d2e7a229 100644 --- a/src/citra_qt/debugger/callstack.cpp +++ b/src/citra_qt/debugger/callstack.cpp @@ -45,7 +45,6 @@ void CallstackWidget::OnDebugModeEntered() { if (ARM_Disasm::Decode(insn) == OP_BL) { std::string name; // ripped from disasm - u8 cond = (insn >> 28) & 0xf; u32 i_offset = insn & 0xffffff; // Sign-extend the 24-bit offset if ((i_offset >> 23) & 1) |