SteamController: Promote RTSS detection to Release - enable by default

This commit is contained in:
Kamil Trzciński 2023-01-21 22:09:17 +01:00
parent 9792dfda9b
commit 485e2535ef
4 changed files with 9 additions and 8 deletions

View file

@ -20,6 +20,13 @@ namespace SteamController
set { Set("EnableSteamDetection", value); }
}
[Description("If current foreground process uses overlay, treat it as a game.")]
public bool DetectRTSSForeground
{
get { return Get<bool>("DetectRTSSForeground", true); }
set { Set("DetectRTSSForeground", value); }
}
[Description("Default profile used when going back to Desktop mode")]
[Browsable(true)]
[TypeConverter(typeof(ProfilesSettings.Helpers.ProfileStringConverter))]