From c71bc25090656162e3727434aadbed3e9d206892 Mon Sep 17 00:00:00 2001 From: Nekotekina Date: Tue, 2 Mar 2021 21:07:24 +0300 Subject: [PATCH] PPU: remove artificial 0x20000000 barrier for debug stats Change it to 0xE0000000 (SPU demarcation line) --- rpcs3/Emu/System.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpcs3/Emu/System.cpp b/rpcs3/Emu/System.cpp index 0022c330f4..2222416a81 100644 --- a/rpcs3/Emu/System.cpp +++ b/rpcs3/Emu/System.cpp @@ -1777,7 +1777,7 @@ void Emulator::Resume() std::string dump; - for (u32 i = 0x10000; i < 0x20000000;) + for (u32 i = 0x10000; i < 0xE0000000;) { if (vm::check_addr(i, vm::page_executable)) {