diff options
Diffstat (limited to 'Ryujinx.Common/Configuration/ConfigurationState.cs')
| -rw-r--r-- | Ryujinx.Common/Configuration/ConfigurationState.cs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Ryujinx.Common/Configuration/ConfigurationState.cs b/Ryujinx.Common/Configuration/ConfigurationState.cs index d51ee9ef..e257fa23 100644 --- a/Ryujinx.Common/Configuration/ConfigurationState.cs +++ b/Ryujinx.Common/Configuration/ConfigurationState.cs @@ -219,6 +219,11 @@ namespace Ryujinx.Configuration public ReactiveObject<AudioBackend> AudioBackend { get; private set; } /// <summary> + /// Defines the amount of RAM available on the emulated system, and how it is distributed + /// </summary> + public ReactiveObject<bool> ExpandRam { get; private set; } + + /// <summary> /// Enable or disable ignoring missing services /// </summary> public ReactiveObject<bool> IgnoreMissingServices { get; private set; } @@ -234,6 +239,7 @@ namespace Ryujinx.Configuration EnableFsIntegrityChecks = new ReactiveObject<bool>(); FsGlobalAccessLogMode = new ReactiveObject<int>(); AudioBackend = new ReactiveObject<AudioBackend>(); + ExpandRam = new ReactiveObject<bool>(); IgnoreMissingServices = new ReactiveObject<bool>(); } } @@ -433,6 +439,7 @@ namespace Ryujinx.Configuration EnableFsIntegrityChecks = System.EnableFsIntegrityChecks, FsGlobalAccessLogMode = System.FsGlobalAccessLogMode, AudioBackend = System.AudioBackend, + ExpandRam = System.ExpandRam, IgnoreMissingServices = System.IgnoreMissingServices, GuiColumns = new GuiColumns { @@ -497,6 +504,7 @@ namespace Ryujinx.Configuration System.EnableFsIntegrityChecks.Value = true; System.FsGlobalAccessLogMode.Value = 0; System.AudioBackend.Value = AudioBackend.OpenAl; + System.ExpandRam.Value = false; System.IgnoreMissingServices.Value = false; Ui.GuiColumns.FavColumn.Value = true; Ui.GuiColumns.IconColumn.Value = true; @@ -838,6 +846,7 @@ namespace Ryujinx.Configuration System.EnableFsIntegrityChecks.Value = configurationFileFormat.EnableFsIntegrityChecks; System.FsGlobalAccessLogMode.Value = configurationFileFormat.FsGlobalAccessLogMode; System.AudioBackend.Value = configurationFileFormat.AudioBackend; + System.ExpandRam.Value = configurationFileFormat.ExpandRam; System.IgnoreMissingServices.Value = configurationFileFormat.IgnoreMissingServices; Ui.GuiColumns.FavColumn.Value = configurationFileFormat.GuiColumns.FavColumn; Ui.GuiColumns.IconColumn.Value = configurationFileFormat.GuiColumns.IconColumn; |
