diff --git a/RELEASE.md b/RELEASE.md index 030573f..7edcf1e 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -22,3 +22,4 @@ - Require to acknowledge when using function that might trigger `Anti-Cheat` protection via top-most window - GPU detection will log errors to `Sentry.io` - Support SMU of Vangogh GPU shipped with BIOS 113 +- Fix Steam Game detection when in X360 controller mode diff --git a/SteamController/Context.cs b/SteamController/Context.cs index 39e7ddc..4ff585c 100644 --- a/SteamController/Context.cs +++ b/SteamController/Context.cs @@ -27,7 +27,7 @@ namespace SteamController public bool IsActive { - get { return GameProcessRunning || SteamUsesSteamInput || SteamUsesSteamInput; } + get { return GameProcessRunning || SteamUsesX360Controller || SteamUsesSteamInput; } } public override string ToString()