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; }