From 2d1d36678dcd870afb3c42d5a8507a45b65cd809 Mon Sep 17 00:00:00 2001 From: Eladash Date: Fri, 22 May 2020 05:12:42 +0300 Subject: [PATCH] SPU/PPU disasm: replace "illegal address" with question marks --- rpcs3/rpcs3qt/debugger_list.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rpcs3/rpcs3qt/debugger_list.cpp b/rpcs3/rpcs3qt/debugger_list.cpp index 7cccfac54c..7f90fedcec 100644 --- a/rpcs3/rpcs3qt/debugger_list.cpp +++ b/rpcs3/rpcs3qt/debugger_list.cpp @@ -82,7 +82,7 @@ void debugger_list::ShowAddress(u32 addr, bool force) u32 pc = m_pc; for (uint i = 0; i < m_item_count; ++i, pc += 4) { - item(i)->setText(qstr(fmt::format(" [%08x] illegal address", pc))); + item(i)->setText(qstr(fmt::format(" [%08x] ?? ?? ?? ??:", pc))); } } else @@ -98,7 +98,7 @@ void debugger_list::ShowAddress(u32 addr, bool force) { if (!vm::check_addr(cpu_offset + pc, 4)) { - item(i)->setText((IsBreakpoint(pc) ? ">> " : " ") + qstr(fmt::format("[%08x] illegal address", pc))); + item(i)->setText((IsBreakpoint(pc) ? ">> " : " ") + qstr(fmt::format("[%08x] ?? ?? ?? ??:", pc))); count = 4; continue; }