diff options
Diffstat (limited to 'Ryujinx.Memory/MemoryAllocationFlags.cs')
-rw-r--r-- | Ryujinx.Memory/MemoryAllocationFlags.cs | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/Ryujinx.Memory/MemoryAllocationFlags.cs b/Ryujinx.Memory/MemoryAllocationFlags.cs index 8706a25b..313f33e5 100644 --- a/Ryujinx.Memory/MemoryAllocationFlags.cs +++ b/Ryujinx.Memory/MemoryAllocationFlags.cs @@ -35,12 +35,6 @@ namespace Ryujinx.Memory /// Indicates that the memory block should support mapping views of a mirrorable memory block. /// The block that is to have their views mapped should be created with the <see cref="Mirrorable"/> flag. /// </summary> - ViewCompatible = 1 << 3, - - /// <summary> - /// Forces views to be mapped page by page on Windows. When partial unmaps are done, this avoids the need - /// to unmap the full range and remap sub-ranges, which creates a time window with incorrectly unmapped memory. - /// </summary> - ForceWindows4KBViewMapping = 1 << 4 + ViewCompatible = 1 << 3 } } |