diff options
Diffstat (limited to 'Ryujinx.HLE/HLEConfiguration.cs')
-rw-r--r-- | Ryujinx.HLE/HLEConfiguration.cs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Ryujinx.HLE/HLEConfiguration.cs b/Ryujinx.HLE/HLEConfiguration.cs index 00c79169..72205827 100644 --- a/Ryujinx.HLE/HLEConfiguration.cs +++ b/Ryujinx.HLE/HLEConfiguration.cs @@ -118,6 +118,11 @@ namespace Ryujinx.HLE /// <remarks>This cannot be changed after <see cref="Switch"/> instantiation.</remarks> internal readonly string TimeZone; + + /// <summary> + /// </summary> + public MemoryManagerMode MemoryManagerMode { internal get; set; } + /// <summary> /// Control the inital state of the ignore missing services setting. /// If this is set to true, when a missing service is encountered, it will try to automatically handle it instead of throwing an exception. @@ -152,6 +157,7 @@ namespace Ryujinx.HLE int fsGlobalAccessLogMode, long systemTimeOffset, string timeZone, + MemoryManagerMode memoryManagerMode, bool ignoreMissingServices, AspectRatio aspectRatio) { @@ -172,6 +178,7 @@ namespace Ryujinx.HLE FsGlobalAccessLogMode = fsGlobalAccessLogMode; SystemTimeOffset = systemTimeOffset; TimeZone = timeZone; + MemoryManagerMode = memoryManagerMode; IgnoreMissingServices = ignoreMissingServices; AspectRatio = aspectRatio; } |