SteamController: Allow to EnableDS4Support=false

This commit is contained in:
Kamil Trzciński 2023-05-21 16:44:01 +02:00
parent af6cee0bff
commit eb774e11fa
7 changed files with 26 additions and 10 deletions

View file

@ -27,6 +27,13 @@ namespace SteamController
set { Set("KeepX360AlwaysConnected", value); }
}
[Description("Enable DS4 support. If disabled the DS4 will be hidden.")]
public bool EnableDS4Support
{
get { return Get<bool>("EnableDS4Support", true); }
set { Set("EnableDS4Support", value); }
}
[Description("If current foreground process uses overlay, treat it as a game.")]
public bool DetectRTSSForeground
{