DEBUG allows to keep X360 controller always connected

This commit is contained in:
Kamil Trzciński 2022-12-10 10:45:37 +01:00
parent 8ff22739c5
commit 45ab31ddcf
3 changed files with 11 additions and 1 deletions

View file

@ -13,6 +13,13 @@ namespace SteamController
{
}
[Description("Keep X360 controller connected always - it is strongly advised to disable this option. Might be required by some games that do not like disonnecting controller. Will disable beep notifications.")]
public bool KeepX360AlwaysConnected
{
get { return Get<bool>("KeepX360AlwaysConnected", false); }
set { Set("KeepX360AlwaysConnected", value); }
}
[Description("Use Lizard Buttons instead of emulated. This option is only for testing purposes.")]
public bool LizardButtons { get; set; } = false;