diff options
| author | gdkchan <gab.dark.100@gmail.com> | 2024-04-06 13:51:44 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-04-06 13:51:44 -0300 |
| commit | 12b235700cf104163bf8030df0feb6357a40f9d3 (patch) | |
| tree | 9a3882a69debf74c450b86056a40b427f401580b /src/Ryujinx.Cpu/AppleHv | |
| parent | 3be616207df437695208ceaec9b255db18768610 (diff) | |
Delete old 16KB page workarounds (#6584)
* Delete old 16KB page workarounds
* Rename Supports4KBPage to UsesPrivateAllocations
* Format whitespace
* This one should be false too
* Update XML doc
Diffstat (limited to 'src/Ryujinx.Cpu/AppleHv')
| -rw-r--r-- | src/Ryujinx.Cpu/AppleHv/HvMemoryManager.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Ryujinx.Cpu/AppleHv/HvMemoryManager.cs b/src/Ryujinx.Cpu/AppleHv/HvMemoryManager.cs index 0c2e5f33..abdddb31 100644 --- a/src/Ryujinx.Cpu/AppleHv/HvMemoryManager.cs +++ b/src/Ryujinx.Cpu/AppleHv/HvMemoryManager.cs @@ -28,7 +28,7 @@ namespace Ryujinx.Cpu.AppleHv private readonly ManagedPageFlags _pages; - public bool Supports4KBPages => true; + public bool UsesPrivateAllocations => false; public int AddressSpaceBits { get; } |
