diff options
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 |
