diff options
Diffstat (limited to 'Ryujinx/Configuration/ConfigurationFileFormat.cs')
-rw-r--r-- | Ryujinx/Configuration/ConfigurationFileFormat.cs | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/Ryujinx/Configuration/ConfigurationFileFormat.cs b/Ryujinx/Configuration/ConfigurationFileFormat.cs index ae43d587..fbfa9c60 100644 --- a/Ryujinx/Configuration/ConfigurationFileFormat.cs +++ b/Ryujinx/Configuration/ConfigurationFileFormat.cs @@ -14,7 +14,7 @@ namespace Ryujinx.Configuration /// <summary> /// The current version of the file format /// </summary> - public const int CurrentVersion = 30; + public const int CurrentVersion = 31; public int Version { get; set; } @@ -24,6 +24,11 @@ namespace Ryujinx.Configuration public bool EnableFileLog { get; set; } /// <summary> + /// Whether or not backend threading is enabled. The "Auto" setting will determine whether threading should be enabled at runtime. + /// </summary> + public BackendThreading BackendThreading { get; set; } + + /// <summary> /// Resolution Scale. An integer scale applied to applicable render targets. Values 1-4, or -1 to use a custom floating point scale instead. /// </summary> public int ResScale { get; set; } |