From 40da01780434868a40744d3b95437022f1446037 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kamil=20Trzci=C5=84ski?= Date: Sat, 3 Dec 2022 20:32:25 +0100 Subject: [PATCH] Fix bug with unable to select controller profile from OSD --- RELEASE.md | 1 + SteamController/Managers/SharedDataManager.cs | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/RELEASE.md b/RELEASE.md index 393216c..e6ff777 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -19,3 +19,4 @@ It does help this project on being supported. - Introduce X360 Haptic profile to improve vibration (in DEBUG) - Re-open Neptune controller every 10 failures - Manage Steam default controller configs to prevent double inputs (in DEBUG, change Settings) +- Fix bug with unable to select controller profile from OSD diff --git a/SteamController/Managers/SharedDataManager.cs b/SteamController/Managers/SharedDataManager.cs index 28380e8..fb0326e 100644 --- a/SteamController/Managers/SharedDataManager.cs +++ b/SteamController/Managers/SharedDataManager.cs @@ -16,7 +16,7 @@ namespace SteamController.Managers sharedData.SetValue(new SteamControllerSetting() { CurrentProfile = context.CurrentProfile?.Name ?? "", - SelectableProfiles = SelectableProfiles(context).JoinWith0(), + SelectableProfiles = SelectableProfiles(context).JoinWithN(), }); }