From e079acdc52ba6e91f7f36fe8dbf04a34dbbb375e Mon Sep 17 00:00:00 2001 From: Starlet Date: Fri, 20 Jul 2018 20:31:56 -0400 Subject: [PATCH] Disable virtual memory --- Ryujinx.HLE/OsHle/Kernel/SvcSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Ryujinx.HLE/OsHle/Kernel/SvcSystem.cs b/Ryujinx.HLE/OsHle/Kernel/SvcSystem.cs index 08305522f..0d43f045e 100644 --- a/Ryujinx.HLE/OsHle/Kernel/SvcSystem.cs +++ b/Ryujinx.HLE/OsHle/Kernel/SvcSystem.cs @@ -18,7 +18,7 @@ namespace Ryujinx.HLE.OsHle.Kernel private const bool EnableProcessDebugging = false; - private const bool IsVirtualMemoryEnabled = true; //This is always true(?) + private const bool IsVirtualMemoryEnabled = false; //TODO: Fix virtual memory and re-enable it private void SvcExitProcess(AThreadState ThreadState) {