diff options
Diffstat (limited to 'src/Ryujinx.Memory/IVirtualMemoryManager.cs')
-rw-r--r-- | src/Ryujinx.Memory/IVirtualMemoryManager.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Ryujinx.Memory/IVirtualMemoryManager.cs b/src/Ryujinx.Memory/IVirtualMemoryManager.cs index 9cf3663c..557da2f2 100644 --- a/src/Ryujinx.Memory/IVirtualMemoryManager.cs +++ b/src/Ryujinx.Memory/IVirtualMemoryManager.cs @@ -214,6 +214,7 @@ namespace Ryujinx.Memory /// <param name="va">Virtual address base</param> /// <param name="size">Size of the region to protect</param> /// <param name="protection">Memory protection to set</param> - void TrackingReprotect(ulong va, ulong size, MemoryPermission protection); + /// <param name="guest">True if the protection is for guest access, false otherwise</param> + void TrackingReprotect(ulong va, ulong size, MemoryPermission protection, bool guest); } } |