Fix a copy/paste error in UnmapPhysicalMemory64

This commit is contained in:
gdkchan 2018-12-27 21:07:47 -03:00
parent 925fc0ca9f
commit c629f3c8a2

View file

@ -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)