From 4c870c1b98d665083e7ebf63e1896cbd26bfa6f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kamil=20Trzci=C5=84ski?= Date: Tue, 3 Jan 2023 12:05:27 +0100 Subject: [PATCH] SteamController: Hold-press Guide button for 100ms in X360 mode --- RELEASE.md | 1 + SteamController/Profiles/Predefined/X360Profile.cs | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/RELEASE.md b/RELEASE.md index f307b13..1f97c1a 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -31,3 +31,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 d59daae..b25f620 100644 --- a/SteamController/Profiles/Predefined/X360Profile.cs +++ b/SteamController/Profiles/Predefined/X360Profile.cs @@ -26,7 +26,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;