mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 16:12:01 +00:00
SetProcessMemoryPermission address and size are always 64-bit (#6977)
This commit is contained in:
parent
0afa8f2c14
commit
0c3421973c
1 changed files with 2 additions and 2 deletions
|
@ -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))
|
||||
|
|
Loading…
Reference in a new issue