From f72bd5721240d9f33d803546c4bbc21a6f4ee466 Mon Sep 17 00:00:00 2001 From: Subv Date: Sun, 17 Apr 2016 21:10:17 -0500 Subject: [PATCH] Kernel/Memory: Remove the Shared Memory region from the legacy memory map. --- src/core/hle/kernel/memory.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/core/hle/kernel/memory.cpp b/src/core/hle/kernel/memory.cpp index 862643448..6f1f0856c 100644 --- a/src/core/hle/kernel/memory.cpp +++ b/src/core/hle/kernel/memory.cpp @@ -107,7 +107,6 @@ struct MemoryArea { // We don't declare the IO regions in here since its handled by other means. static MemoryArea memory_areas[] = { - {SHARED_MEMORY_VADDR, SHARED_MEMORY_SIZE, "Shared Memory"}, // Shared memory {VRAM_VADDR, VRAM_SIZE, "VRAM"}, // Video memory (VRAM) {TLS_AREA_VADDR, TLS_AREA_SIZE, "TLS Area"}, // TLS memory };