diff --git a/SteamController/Controller.cs b/SteamController/Controller.cs index 03f9628..2f44620 100644 --- a/SteamController/Controller.cs +++ b/SteamController/Controller.cs @@ -403,9 +403,7 @@ namespace SteamController DS4Shortcuts = ProfilesSettings.DS4BackPanelSettings.Default, DS4Haptic = ProfilesSettings.HapticSettings.DS4, Application = Settings.Default, -#if DEBUG DEBUG = SettingsDebug.Default -#endif } }; diff --git a/SteamController/SettingsDebug.cs b/SteamController/SettingsDebug.cs index 78d2bb3..54242d3 100644 --- a/SteamController/SettingsDebug.cs +++ b/SteamController/SettingsDebug.cs @@ -14,10 +14,18 @@ namespace SteamController } [Description("Use Lizard Buttons instead of emulated. This option is only for testing purposes.")] - public bool LizardButtons { get; set; } = false; + public bool LizardButtons + { + get { return Get("LizardButtons", false); } + set { Set("LizardButtons", value); } + } [Description("Use Lizard Mouse instead of emulated. This option is only for testing purposes.")] - public bool LizardMouse { get; set; } = true; + public bool LizardMouse + { + get { return Get("LizardMouse", false); } + set { Set("LizardMouse", value); } + } public override string ToString() {