mirror of
https://github.com/ayufan/steam-deck-tools.git
synced 2026-04-05 06:15:26 +00:00
Require to acknowledge Anti-Cheat impact on PerformanceOverlay
This commit is contained in:
parent
1da838227d
commit
862bdd2dd3
2 changed files with 73 additions and 4 deletions
|
|
@ -40,5 +40,22 @@ namespace PerformanceOverlay
|
|||
get { return Get<bool>("EnableFullOnPowerControl", false); }
|
||||
set { Set("EnableFullOnPowerControl", value); }
|
||||
}
|
||||
|
||||
public bool EnableKernelDrivers
|
||||
{
|
||||
get { return Get<bool>("EnableKernelDrivers", false); }
|
||||
set { Set("EnableKernelDrivers", value); }
|
||||
}
|
||||
|
||||
public bool EnableExperimentalFeatures
|
||||
{
|
||||
get { return Instance.IsDEBUG; }
|
||||
}
|
||||
|
||||
public bool AckAntiCheat
|
||||
{
|
||||
get { return Get<bool>("AckAntiCheat", false); }
|
||||
set { Set("AckAntiCheat", value); }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue