SteamController: Detect RTSS in foreground

This commit is contained in:
Kamil Trzciński 2022-12-12 12:31:59 +01:00
parent e5debff45b
commit 312fc97034
5 changed files with 25 additions and 9 deletions

View file

@ -20,6 +20,13 @@ namespace SteamController
set { Set("KeepX360AlwaysConnected", value); }
}
[Description("If current foreground process uses overlay, treat it as a game.")]
public bool DetectRTSSForeground
{
get { return Get<bool>("DetectRTSSForeground", false); }
set { Set("DetectRTSSForeground", value); }
}
[Description("Use Lizard Buttons instead of emulated. This option is only for testing purposes.")]
public bool LizardButtons { get; set; } = false;