From 94d33003a3c3a8e0d7bb43237a5059648a43ba56 Mon Sep 17 00:00:00 2001 From: Eladash Date: Sat, 10 Aug 2019 15:57:33 +0300 Subject: [PATCH] Write zero in attr->pad (sys_memory_get_page_attribute) Its included in lv2 as well. --- rpcs3/Emu/Cell/lv2/sys_memory.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/rpcs3/Emu/Cell/lv2/sys_memory.cpp b/rpcs3/Emu/Cell/lv2/sys_memory.cpp index 77c7d77145..35f74e4733 100644 --- a/rpcs3/Emu/Cell/lv2/sys_memory.cpp +++ b/rpcs3/Emu/Cell/lv2/sys_memory.cpp @@ -233,6 +233,7 @@ error_code sys_memory_get_page_attribute(u32 addr, vm::ptr attr attr->page_size = 4096; } + attr->pad = 0; // Always write 0 return CELL_OK; }