Fix bug with unable to select controller profile from OSD

This commit is contained in:
Kamil Trzciński 2022-12-03 20:32:25 +01:00
parent 19e7ed7012
commit 40da017804
2 changed files with 2 additions and 1 deletions

View file

@ -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

View file

@ -16,7 +16,7 @@ namespace SteamController.Managers
sharedData.SetValue(new SteamControllerSetting()
{
CurrentProfile = context.CurrentProfile?.Name ?? "",
SelectableProfiles = SelectableProfiles(context).JoinWith0(),
SelectableProfiles = SelectableProfiles(context).JoinWithN(),
});
}