diff options
Diffstat (limited to 'Ryujinx.Memory/IVirtualMemoryManager.cs')
-rw-r--r-- | Ryujinx.Memory/IVirtualMemoryManager.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Ryujinx.Memory/IVirtualMemoryManager.cs b/Ryujinx.Memory/IVirtualMemoryManager.cs index 2448ba03..3056bb2e 100644 --- a/Ryujinx.Memory/IVirtualMemoryManager.cs +++ b/Ryujinx.Memory/IVirtualMemoryManager.cs @@ -135,7 +135,8 @@ namespace Ryujinx.Memory /// <param name="va">Virtual address of the region</param> /// <param name="size">Size of the region</param> /// <param name="write">True if the region was written, false if read</param> - void SignalMemoryTracking(ulong va, ulong size, bool write); + /// <param name="precise">True if the access is precise, false otherwise</param> + void SignalMemoryTracking(ulong va, ulong size, bool write, bool precise = false); /// <summary> /// Reprotect a region of virtual memory for tracking. |