Debugger: Improve SPU/PPU callstack handling

This commit is contained in:
Eladash 2020-11-07 21:05:44 +02:00 committed by Ivan
parent 6fcc68699a
commit 516da4ecdd
3 changed files with 14 additions and 6 deletions

View file

@ -23,7 +23,7 @@ void call_stack_list::HandleUpdate(std::vector<std::pair<u32, u32>> call_stack)
for (const auto& addr : call_stack)
{
const QString call_stack_item_text = qstr(fmt::format("0x%08llx (r1=0x%08llx)", addr.first, addr.second));
const QString call_stack_item_text = qstr(fmt::format("0x%08llx (sp=0x%08llx)", addr.first, addr.second));
QListWidgetItem* callStackItem = new QListWidgetItem(call_stack_item_text);
callStackItem->setData(Qt::UserRole, { addr.first });
addItem(callStackItem);