mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-12-06 07:12:28 +01:00
Debugger: Disable PPU address redirection
It causes more confusion than it helps.
This commit is contained in:
parent
7fe98d8d66
commit
c099bb817f
|
|
@ -413,10 +413,9 @@ std::string ppu_thread::dump_regs() const
|
|||
if (toc % 4 == 0 && vm::check_addr(toc))
|
||||
{
|
||||
is_function = true;
|
||||
reg = reg_ptr;
|
||||
}
|
||||
}
|
||||
|
||||
reg = reg_ptr;
|
||||
}
|
||||
else if (reg % 4 == 0 && vm::check_addr(reg, 4, vm::page_executable))
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue