mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-02-11 15:40:51 +00:00
PPU memory must be exec memory when using debugger's "Next Instruction" feature
This commit is contained in:
parent
2b9c407dc3
commit
74a09a6338
@ -304,7 +304,7 @@ void debugger_frame::keyPressEvent(QKeyEvent* event)
|
||||
{
|
||||
be_t<ppu_opcode_t> op{};
|
||||
|
||||
if (vm::try_access(pc, &op, 4, false))
|
||||
if (vm::check_addr(pc, vm::page_executable) && vm::try_access(pc, &op, 4, false))
|
||||
res = op_branch_targets(pc, op);
|
||||
|
||||
break;
|
||||
|
Loading…
x
Reference in New Issue
Block a user