Lower default min power to 15W and remove the .exe from the default game title.

This commit is contained in:
IceStormNG
2024-03-02 16:41:05 +01:00
parent 0eb5394af8
commit b8c3c04e4b

View File

@@ -88,11 +88,11 @@ namespace GHelper.AutoTDP
GameProfile p = new GameProfile();
p.ProcessName = Path.GetFileName(path);
p.GameTitle = Path.GetFileName(path);
p.GameTitle = Path.GetFileName(path).Replace(".exe", "");
p.Enabled = true;
p.TargetFPS = 60;
p.MaxTdp = 40;
p.MinTdp = 20;
p.MinTdp = 15;
profileUI = new AutoTDPGameProfileUI(p, this);
profileUI.TopMost = true;