diff options
author | Rafa <61294433+rafadotmoe@users.noreply.github.com> | 2024-06-25 08:40:53 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-25 09:40:53 +0200 |
commit | 0c3421973c0e79444ac4c2d8bd3d9932a357bbb9 (patch) | |
tree | 1e3daebb18b48d697973417d4053029a39f84777 | |
parent | 0afa8f2c14f046b46ac5ba14c96f3a5ce523ba16 (diff) |
SetProcessMemoryPermission address and size are always 64-bit (#6977)1.1.1337
-rw-r--r-- | src/Ryujinx.HLE/HOS/Kernel/SupervisorCall/Syscall.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Ryujinx.HLE/HOS/Kernel/SupervisorCall/Syscall.cs b/src/Ryujinx.HLE/HOS/Kernel/SupervisorCall/Syscall.cs index 91c6bded..8f104b0b 100644 --- a/src/Ryujinx.HLE/HOS/Kernel/SupervisorCall/Syscall.cs +++ b/src/Ryujinx.HLE/HOS/Kernel/SupervisorCall/Syscall.cs @@ -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)) |