diff --git a/Ryujinx.Common/Configuration/ConfigurationState.cs b/Ryujinx.Common/Configuration/ConfigurationState.cs index 30b1294e77..7a365d325b 100644 --- a/Ryujinx.Common/Configuration/ConfigurationState.cs +++ b/Ryujinx.Common/Configuration/ConfigurationState.cs @@ -410,7 +410,7 @@ namespace Ryujinx.Configuration Hid.JoystickControls.Value = new NpadController { - Enabled = true, + Enabled = true, Index = 0, Deadzone = 0.05f, TriggerThreshold = 0.5f, @@ -425,7 +425,6 @@ namespace Ryujinx.Configuration ButtonMinus = ControllerInputId.Button6, ButtonL = ControllerInputId.Button4, ButtonZl = ControllerInputId.Axis2, - }, RightJoycon = new NpadControllerRight { @@ -446,7 +445,7 @@ namespace Ryujinx.Configuration { if (configurationFileFormat.Version != 1 && configurationFileFormat.Version != 0) { - Common.Logging.Logger.PrintWarning(LogClass.Application, $"Unsupported configuration version {configurationFileFormat.Version}, loading default!"); + Common.Logging.Logger.PrintWarning(LogClass.Application, $"Unsupported configuration version {configurationFileFormat.Version}, loading default."); LoadDefault(); @@ -495,7 +494,7 @@ namespace Ryujinx.Configuration { if (Instance != null) { - throw new InvalidOperationException("Configuration is already initialized!"); + throw new InvalidOperationException("Configuration is already initialized"); } Instance = new ConfigurationState(); diff --git a/Ryujinx.Common/Logging/Logger.cs b/Ryujinx.Common/Logging/Logger.cs index 9b7a500aa7..300ec1308d 100644 --- a/Ryujinx.Common/Logging/Logger.cs +++ b/Ryujinx.Common/Logging/Logger.cs @@ -42,8 +42,7 @@ namespace Ryujinx.Common.Logging AddTarget(new AsyncLogTargetWrapper( new ConsoleLogTarget("console"), 1000, - AsyncLogTargetOverflowAction.Block - )); + AsyncLogTargetOverflowAction.Block)); } public static void RestartTime()