SetProcessMemoryPermission address and size are always 64-bit

This commit is contained in:
Rafa10 2024-06-24 22:31:34 +01:00
parent 0afa8f2c14
commit c3149ceafd

View file

@ -1546,8 +1546,8 @@ namespace Ryujinx.HLE.HOS.Kernel.SupervisorCall
#pragma warning disable CA1822 // Mark member as static
public Result SetProcessMemoryPermission(
int handle,
[PointerSized] ulong src,
[PointerSized] ulong size,
ulong src,
ulong size,
KMemoryPermission permission)
{
if (!PageAligned(src))