From 607f074ae7f308455dc25aa9e231f50f2706e9a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kamil=20Trzci=C5=84ski?= Date: Sat, 17 Dec 2022 21:12:31 +0100 Subject: [PATCH] Generate `X360.Guide` button event for at least `30ms` --- SteamController/Profiles/Predefined/X360Profile.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SteamController/Profiles/Predefined/X360Profile.cs b/SteamController/Profiles/Predefined/X360Profile.cs index 9cbc042..af909f7 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[Xbox360Button.Guide] = context.Steam.BtnSteam.Pressed(); + context.X360.Overwrite(Xbox360Button.Guide, context.Steam.BtnSteam.Pressed(), 30); context.X360[Xbox360Button.Back] = context.Steam.BtnMenu; context.X360[Xbox360Button.Start] = context.Steam.BtnOptions;