mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-06 15:05:59 +00:00
debugger: Fix SPU memory viewing (#10007)
* debugger: Fix SPU memory viewing * Fix terminal recovery from page faults (hack allocation)
This commit is contained in:
parent
dedf09017a
commit
a67b347966
2 changed files with 3 additions and 3 deletions
|
|
@ -111,7 +111,7 @@ void debugger_list::ShowAddress(u32 addr, bool force)
|
|||
item(i)->setBackground(default_background);
|
||||
}
|
||||
|
||||
if (m_cpu->id_type() == 1 && !vm::check_addr(pc))
|
||||
if (m_cpu->id_type() == 1 && !vm::check_addr(pc, 0))
|
||||
{
|
||||
item(i)->setText((IsBreakpoint(pc) ? ">> " : " ") + qstr(fmt::format("[%08x] ?? ?? ?? ??:", pc)));
|
||||
count = 4;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue