summaryrefslogtreecommitdiff
path: root/src/citra_qt/debugger/callstack.cpp
diff options
context:
space:
mode:
authorGravatar Jonathan Hao2017-01-05 00:48:29 +0800
committerGravatar Yuri Kunde Schlesner2017-01-04 13:48:29 -0300
commitc18cb1b192d60499af3d68b244e86c8dd8f55200 (patch)
tree48c481884bb29dd7bde72694a6ed703bb416d7c3 /src/citra_qt/debugger/callstack.cpp
parentUpdate .travis.yml (diff)
downloadyuzu-c18cb1b192d60499af3d68b244e86c8dd8f55200.tar.gz
yuzu-c18cb1b192d60499af3d68b244e86c8dd8f55200.tar.xz
yuzu-c18cb1b192d60499af3d68b244e86c8dd8f55200.zip
Fix some warnings (#2399)
Diffstat (limited to 'src/citra_qt/debugger/callstack.cpp')
-rw-r--r--src/citra_qt/debugger/callstack.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/citra_qt/debugger/callstack.cpp b/src/citra_qt/debugger/callstack.cpp
index c1db93583..08d2e7a22 100644
--- a/src/citra_qt/debugger/callstack.cpp
+++ b/src/citra_qt/debugger/callstack.cpp
@@ -45,7 +45,6 @@ void CallstackWidget::OnDebugModeEntered() {
45 if (ARM_Disasm::Decode(insn) == OP_BL) { 45 if (ARM_Disasm::Decode(insn) == OP_BL) {
46 std::string name; 46 std::string name;
47 // ripped from disasm 47 // ripped from disasm
48 u8 cond = (insn >> 28) & 0xf;
49 u32 i_offset = insn & 0xffffff; 48 u32 i_offset = insn & 0xffffff;
50 // Sign-extend the 24-bit offset 49 // Sign-extend the 24-bit offset
51 if ((i_offset >> 23) & 1) 50 if ((i_offset >> 23) & 1)