diff options
author | Lioncash <mathew1800@gmail.com> | 2015-03-30 11:22:52 -0400 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2015-03-30 11:25:02 -0400 |
commit | 0520a3b178405992cc60e914b38d278ee9afbdc9 (patch) | |
tree | ce01b508adbbfc268f63571c498460660e05c323 /src | |
parent | c4767f3bb2da17c8b14df78f47db10696f91960a (diff) |
callstack: Remove unnecessary disassembler instantiation
Decode is a static function. There's no need to allocate a disassembler instance.
Diffstat (limited to 'src')
-rw-r--r-- | src/citra_qt/debugger/callstack.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/citra_qt/debugger/callstack.cpp b/src/citra_qt/debugger/callstack.cpp index 9bb22ca2e..3742c2d38 100644 --- a/src/citra_qt/debugger/callstack.cpp +++ b/src/citra_qt/debugger/callstack.cpp @@ -27,7 +27,6 @@ CallstackWidget::CallstackWidget(QWidget* parent): QDockWidget(parent) void CallstackWidget::OnDebugModeEntered() { - ARM_Disasm* disasm = new ARM_Disasm(); ARM_Interface* app_core = Core::g_app_core; u32 sp = app_core->GetReg(13); //stack pointer @@ -46,7 +45,7 @@ void CallstackWidget::OnDebugModeEntered() /* TODO (mattvail) clean me, move to debugger interface */ u32 insn = Memory::Read32(call_addr); - if (disasm->Decode(insn) == OP_BL) + if (ARM_Disasm::Decode(insn) == OP_BL) { std::string name; // ripped from disasm |