SteamController: Fix Steam Game detection when in X360 controller mode

This commit is contained in:
Kamil Trzciński 2023-01-03 11:59:34 +01:00
parent b24ae302b1
commit 561138beb3
2 changed files with 2 additions and 1 deletions

View file

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

View file

@ -27,7 +27,7 @@ namespace SteamController
public bool IsActive
{
get { return GameProcessRunning || SteamUsesSteamInput || SteamUsesSteamInput; }
get { return GameProcessRunning || SteamUsesX360Controller || SteamUsesSteamInput; }
}
public override string ToString()