From 538fba826b75cdd2feffaeac684044246590cb29 Mon Sep 17 00:00:00 2001 From: Xpl0itR Date: Sun, 3 May 2020 03:00:53 +0100 Subject: Improvements to input and input configuration in the GUI. (#849) * Improvements to input and input configuration in the GUI * Requested changes * nits * more nits --- Ryujinx.Common/Configuration/ConfigurationFileFormat.cs | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) (limited to 'Ryujinx.Common/Configuration/ConfigurationFileFormat.cs') diff --git a/Ryujinx.Common/Configuration/ConfigurationFileFormat.cs b/Ryujinx.Common/Configuration/ConfigurationFileFormat.cs index ff5a67c4..09252b77 100644 --- a/Ryujinx.Common/Configuration/ConfigurationFileFormat.cs +++ b/Ryujinx.Common/Configuration/ConfigurationFileFormat.cs @@ -4,9 +4,7 @@ using Ryujinx.Common.Configuration.Hid; using Ryujinx.Common.Logging; using Ryujinx.Common.Utilities; using Ryujinx.Configuration.System; -using Ryujinx.Configuration.Hid; using Ryujinx.Configuration.Ui; -using Ryujinx.UI.Input; namespace Ryujinx.Configuration { @@ -15,7 +13,7 @@ namespace Ryujinx.Configuration /// /// The current version of the file format /// - public const int CurrentVersion = 5; + public const int CurrentVersion = 6; public int Version { get; set; } @@ -129,11 +127,6 @@ namespace Ryujinx.Configuration /// public bool IgnoreMissingServices { get; set; } - /// - /// The primary controller's type - /// - public ControllerType ControllerType { get; set; } - /// /// Used to toggle columns in the GUI /// @@ -162,12 +155,12 @@ namespace Ryujinx.Configuration /// /// Keyboard control bindings /// - public NpadKeyboard KeyboardControls { get; set; } + public List KeyboardConfig { get; set; } /// /// Controller control bindings /// - public NpadController JoystickControls { get; set; } + public List ControllerConfig { get; set; } /// /// Loads a configuration file from disk -- cgit v1.2.3