Fix a copy/paste error in UnmapPhysicalMemory64
This commit is contained in:
parent
925fc0ca9f
commit
c629f3c8a2
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue