From 0e926400855b5f8446f8a1ff5d65f2ecd001d72b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kamil=20Trzci=C5=84ski?= Date: Mon, 5 Dec 2022 11:18:19 +0100 Subject: [PATCH] Hide Rumble profile from DEBUG --- SteamController/Controller.cs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/SteamController/Controller.cs b/SteamController/Controller.cs index 142b50d..4572f18 100644 --- a/SteamController/Controller.cs +++ b/SteamController/Controller.cs @@ -22,8 +22,9 @@ namespace SteamController new Profiles.SteamProfile() { Name = "Steam", Visible = false }, new Profiles.SteamWithShorcutsProfile() { Name = "Steam with Shortcuts", Visible = false }, new Profiles.X360Profile() { Name = "X360" }, + #if !DEBUG new Profiles.X360RumbleProfile() { Name = "X360 with Rumble" }, - #if DEBUG + #else new Profiles.X360HapticProfile() { Name = "X360 with Haptic" } #endif }, @@ -314,8 +315,9 @@ namespace SteamController { Desktop = ProfilesSettings.BackPanelSettings.Desktop, X360 = ProfilesSettings.BackPanelSettings.X360, +#if !DEBUG X360Rumble = ProfilesSettings.X360RumbleSettings.Default, -#if DEBUG +#else X360Haptic = ProfilesSettings.X360HapticSettings.Default, #endif Application = Settings.Default