From 319402a11a44a46d437ba37de2dc3e2a8ea0678e Mon Sep 17 00:00:00 2001 From: Ben Vanik Date: Thu, 4 Jun 2015 16:37:17 -0700 Subject: [PATCH] Re-allow writes to 0. No clue why, but everything does it. --- src/xenia/memory.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xenia/memory.cc b/src/xenia/memory.cc index fb9af7e7b..183f42f10 100644 --- a/src/xenia/memory.cc +++ b/src/xenia/memory.cc @@ -179,7 +179,7 @@ int Memory::Initialize() { heaps_.v00000000.AllocFixed( 0x00000000, 4096, 4096, kMemoryAllocationReserve | kMemoryAllocationCommit, - kMemoryProtectNoAccess); + kMemoryProtectRead | kMemoryProtectWrite); // GPU writeback. // 0xC... is physical, 0x7F... is virtual. We may need to overlay these.