Re-allow writes to 0. No clue why, but everything does it.

This commit is contained in:
Ben Vanik 2015-06-04 16:37:17 -07:00
parent d9364eccac
commit 319402a11a
1 changed files with 1 additions and 1 deletions

View File

@ -179,7 +179,7 @@ int Memory::Initialize() {
heaps_.v00000000.AllocFixed( heaps_.v00000000.AllocFixed(
0x00000000, 4096, 4096, 0x00000000, 4096, 4096,
kMemoryAllocationReserve | kMemoryAllocationCommit, kMemoryAllocationReserve | kMemoryAllocationCommit,
kMemoryProtectNoAccess); kMemoryProtectRead | kMemoryProtectWrite);
// GPU writeback. // GPU writeback.
// 0xC... is physical, 0x7F... is virtual. We may need to overlay these. // 0xC... is physical, 0x7F... is virtual. We may need to overlay these.