From 1998a3a90afeb5b1bede6ba0d17e7518a71cfe4f Mon Sep 17 00:00:00 2001
From: Mark Araujo <36304206+Pixxel123@users.noreply.github.com>
Date: Fri, 30 Apr 2021 20:39:42 +0100
Subject: Changes ordering of config.json and configuration files (#2253)
This allows configuration values to be written to log file for analysis
---
Ryujinx.Common/Configuration/ConfigurationFileFormat.cs | 9 +++++----
1 file changed, 5 insertions(+), 4 deletions(-)
(limited to 'Ryujinx.Common/Configuration/ConfigurationFileFormat.cs')
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
@@ -18,6 +18,11 @@ namespace Ryujinx.Configuration
public int Version { get; set; }
+ ///
+ /// Enables or disables logging to a file on disk
+ ///
+ public bool EnableFileLog { get; set; }
+
///
/// Resolution Scale. An integer scale applied to applicable render targets. Values 1-4, or -1 to use a custom floating point scale instead.
///
@@ -88,10 +93,6 @@ namespace Ryujinx.Configuration
///
public GraphicsDebugLevel LoggingGraphicsDebugLevel { get; set; }
- ///
- /// Enables or disables logging to a file on disk
- ///
- public bool EnableFileLog { get; set; }
///
/// Change System Language
--
cgit v1.2.3