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.Tests.Memory | |
| 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.Tests.Memory')
| -rw-r--r-- | src/Ryujinx.Tests.Memory/MockVirtualMemoryManager.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Ryujinx.Tests.Memory/MockVirtualMemoryManager.cs b/src/Ryujinx.Tests.Memory/MockVirtualMemoryManager.cs index 15e7d9b8..3fe44db2 100644 --- a/src/Ryujinx.Tests.Memory/MockVirtualMemoryManager.cs +++ b/src/Ryujinx.Tests.Memory/MockVirtualMemoryManager.cs @@ -8,7 +8,7 @@ namespace Ryujinx.Tests.Memory { public class MockVirtualMemoryManager : IVirtualMemoryManager { - public bool Supports4KBPages => true; + public bool UsesPrivateAllocations => false; public bool NoMappings = false; |
