From ea022c8dd308919fcfe6f354e6aed61fd7c2052a Mon Sep 17 00:00:00 2001 From: gibbed Date: Mon, 21 Oct 2013 00:39:39 -0700 Subject: [PATCH] That one byte is totally important. --- src/xenia/core/memory.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xenia/core/memory.cc b/src/xenia/core/memory.cc index 5c457b9c2..95e690811 100644 --- a/src/xenia/core/memory.cc +++ b/src/xenia/core/memory.cc @@ -116,7 +116,7 @@ xe_memory_ref xe_memory_create(xe_memory_options_t options) { INVALID_HANDLE_VALUE, NULL, PAGE_READWRITE | SEC_RESERVE, - 0, 0xFFFFFFFF, // entire 4gb space + 1, 0, // entire 4gb space NULL); if (!memory->mapping) { XELOGE("Unable to reserve the 4gb guest address space.");