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