diff options
author | Mark Araujo <36304206+Pixxel123@users.noreply.github.com> | 2021-04-30 20:39:42 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-30 21:39:42 +0200 |
commit | 1998a3a90afeb5b1bede6ba0d17e7518a71cfe4f (patch) | |
tree | 7c0abc28cd230f19298ed77714557a955d1ae748 /Ryujinx.Common/Configuration/ConfigurationFileFormat.cs | |
parent | 8a81be9ecad5995dbc40fdff7d1675a7afd5a329 (diff) |
Changes ordering of config.json and configuration files (#2253)
This allows configuration values to be written to log file for analysis
Diffstat (limited to 'Ryujinx.Common/Configuration/ConfigurationFileFormat.cs')
-rw-r--r-- | Ryujinx.Common/Configuration/ConfigurationFileFormat.cs | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/Ryujinx.Common/Configuration/ConfigurationFileFormat.cs b/Ryujinx.Common/Configuration/ConfigurationFileFormat.cs index 1d47051a..092bb9dd 100644 --- a/Ryujinx.Common/Configuration/ConfigurationFileFormat.cs +++ b/Ryujinx.Common/Configuration/ConfigurationFileFormat.cs @@ -19,6 +19,11 @@ namespace Ryujinx.Configuration public int Version { get; set; } /// <summary> + /// Enables or disables logging to a file on disk + /// </summary> + public bool EnableFileLog { 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; } @@ -88,10 +93,6 @@ namespace Ryujinx.Configuration /// </summary> public GraphicsDebugLevel LoggingGraphicsDebugLevel { get; set; } - /// <summary> - /// Enables or disables logging to a file on disk - /// </summary> - public bool EnableFileLog { get; set; } /// <summary> /// Change System Language |