diff options
author | archshift <admin@archshift.com> | 2015-01-11 07:39:00 +0100 |
---|---|---|
committer | archshift <admin@archshift.com> | 2015-01-12 06:47:28 +0100 |
commit | d670b7e52261c6cb4b53fb7f457f8ab4614ebc30 (patch) | |
tree | db543f0228cc9870c0c4eec3fa54ca61257bd9eb /src/citra_qt/debugger | |
parent | Merge pull request #468 from lioncash/adc (diff) | |
download | yuzu-d670b7e52261c6cb4b53fb7f457f8ab4614ebc30.tar yuzu-d670b7e52261c6cb4b53fb7f457f8ab4614ebc30.tar.gz yuzu-d670b7e52261c6cb4b53fb7f457f8ab4614ebc30.tar.bz2 yuzu-d670b7e52261c6cb4b53fb7f457f8ab4614ebc30.tar.lz yuzu-d670b7e52261c6cb4b53fb7f457f8ab4614ebc30.tar.xz yuzu-d670b7e52261c6cb4b53fb7f457f8ab4614ebc30.tar.zst yuzu-d670b7e52261c6cb4b53fb7f457f8ab4614ebc30.zip |
Diffstat (limited to '')
-rw-r--r-- | src/citra_qt/debugger/callstack.cpp | 11 | ||||
-rw-r--r-- | src/citra_qt/debugger/callstack.h | 3 |
2 files changed, 14 insertions, 0 deletions
diff --git a/src/citra_qt/debugger/callstack.cpp b/src/citra_qt/debugger/callstack.cpp index 025a5896b..9bb22ca2e 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()); + } + } +} diff --git a/src/citra_qt/debugger/callstack.h b/src/citra_qt/debugger/callstack.h index fb390f5c3..1a9b6dc81 100644 --- a/src/citra_qt/debugger/callstack.h +++ b/src/citra_qt/debugger/callstack.h @@ -21,4 +21,7 @@ public slots: private: Ui::CallStack ui; QStandardItemModel* callstack_model; + + /// Clears the callstack widget while keeping the column widths the same + void Clear(); }; |