diff --git a/src/xenia/memory.cc b/src/xenia/memory.cc index 860641987..e78edfd98 100644 --- a/src/xenia/memory.cc +++ b/src/xenia/memory.cc @@ -380,6 +380,7 @@ uint32_t Memory::SystemHeapAlloc(uint32_t size, uint32_t alignment, kMemoryProtectRead | kMemoryProtectWrite, false, &address)) { return 0; } + Zero(address, size); return address; }