From c629f3c8a204638ee7e8ee580360897392ebc6f4 Mon Sep 17 00:00:00 2001 From: gdkchan Date: Thu, 27 Dec 2018 21:07:47 -0300 Subject: [PATCH] Fix a copy/paste error in UnmapPhysicalMemory64 --- Ryujinx.HLE/HOS/Kernel/SupervisorCall/SvcMemory.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Ryujinx.HLE/HOS/Kernel/SupervisorCall/SvcMemory.cs b/Ryujinx.HLE/HOS/Kernel/SupervisorCall/SvcMemory.cs index 0717d30586..388dcc217c 100644 --- a/Ryujinx.HLE/HOS/Kernel/SupervisorCall/SvcMemory.cs +++ b/Ryujinx.HLE/HOS/Kernel/SupervisorCall/SvcMemory.cs @@ -350,7 +350,7 @@ namespace Ryujinx.HLE.HOS.Kernel.SupervisorCall public KernelResult UnmapPhysicalMemory64(ulong address, ulong size) { - return MapPhysicalMemory(address, size); + return UnmapPhysicalMemory(address, size); } private KernelResult UnmapPhysicalMemory(ulong address, ulong size)