SteamController: Make DetectRTSSForeground disabled for now

This commit is contained in:
Kamil Trzciński 2023-02-11 09:25:43 +01:00
parent 839c2be498
commit ce1435947c

View file

@ -30,7 +30,7 @@ namespace SteamController
[Description("If current foreground process uses overlay, treat it as a game.")]
public bool DetectRTSSForeground
{
get { return Get<bool>("DetectRTSSForeground", true); }
get { return Get<bool>("DetectRTSSForeground", false); }
set { Set("DetectRTSSForeground", value); }
}