From d670b7e52261c6cb4b53fb7f457f8ab4614ebc30 Mon Sep 17 00:00:00 2001 From: archshift Date: Sat, 10 Jan 2015 22:39:00 -0800 Subject: Qt Callstack: Clear the callstack every time it's updated This fixes the issue that old members of the callstack would stick around, even when the callstack shortened. --- src/citra_qt/debugger/callstack.cpp | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'src/citra_qt/debugger/callstack.cpp') diff --git a/src/citra_qt/debugger/callstack.cpp b/src/citra_qt/debugger/callstack.cpp index 025a5896..9bb22ca2 100644 --- a/src/citra_qt/debugger/callstack.cpp +++ b/src/citra_qt/debugger/callstack.cpp @@ -33,6 +33,8 @@ void CallstackWidget::OnDebugModeEntered() u32 sp = app_core->GetReg(13); //stack pointer u32 ret_addr, call_addr, func_addr; + Clear(); + int counter = 0; for (u32 addr = 0x10000000; addr >= sp; addr -= 4) { @@ -76,3 +78,12 @@ void CallstackWidget::OnDebugModeLeft() { } + +void CallstackWidget::Clear() +{ + for (int row = 0; row < callstack_model->rowCount(); row++) { + for (int column = 0; column < callstack_model->columnCount(); column++) { + callstack_model->setItem(row, column, new QStandardItem()); + } + } +} -- cgit v1.2.3