mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-01-29 22:48:27 +00:00
SetProcessMemoryPermission address and size are always 64-bit (#6977)
This commit is contained in:
parent
0afa8f2c14
commit
0c3421973c
|
@ -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