diff --git a/RELEASE.md b/RELEASE.md index bfe9ca1..70cb405 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -24,3 +24,4 @@ - Support SMU of Vangogh GPU shipped with BIOS 113 - Fix Steam Game detection when in X360 controller mode - Force to reconnect X360 controller on Resume +- Hold-press Guide button for 100ms in X360 mode diff --git a/SteamController/Profiles/Predefined/X360Profile.cs b/SteamController/Profiles/Predefined/X360Profile.cs index af909f7..f47402c 100644 --- a/SteamController/Profiles/Predefined/X360Profile.cs +++ b/SteamController/Profiles/Predefined/X360Profile.cs @@ -22,7 +22,7 @@ namespace SteamController.Profiles.Predefined context.X360.Connected = true; // Controls - context.X360.Overwrite(Xbox360Button.Guide, context.Steam.BtnSteam.Pressed(), 30); + context.X360.Overwrite(Xbox360Button.Guide, context.Steam.BtnSteam.Pressed(), 100); context.X360[Xbox360Button.Back] = context.Steam.BtnMenu; context.X360[Xbox360Button.Start] = context.Steam.BtnOptions;