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.Memory/AddressSpaceManager.cs | |
| 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.Memory/AddressSpaceManager.cs')
| -rw-r--r-- | src/Ryujinx.Memory/AddressSpaceManager.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Ryujinx.Memory/AddressSpaceManager.cs b/src/Ryujinx.Memory/AddressSpaceManager.cs index f089c857..807c5c0f 100644 --- a/src/Ryujinx.Memory/AddressSpaceManager.cs +++ b/src/Ryujinx.Memory/AddressSpaceManager.cs @@ -13,7 +13,7 @@ namespace Ryujinx.Memory public sealed class AddressSpaceManager : VirtualMemoryManagerBase, IVirtualMemoryManager { /// <inheritdoc/> - public bool Supports4KBPages => true; + public bool UsesPrivateAllocations => false; /// <summary> /// Address space width in bits. |
