mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 14:11:42 +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
|
#pragma warning disable CA1822 // Mark member as static
|
||||||
public Result SetProcessMemoryPermission(
|
public Result SetProcessMemoryPermission(
|
||||||
int handle,
|
int handle,
|
||||||
[PointerSized] ulong src,
|
ulong src,
|
||||||
[PointerSized] ulong size,
|
ulong size,
|
||||||
KMemoryPermission permission)
|
KMemoryPermission permission)
|
||||||
{
|
{
|
||||||
if (!PageAligned(src))
|
if (!PageAligned(src))
|
||||||
|
|
Loading…
Reference in a new issue