From b8c3c04e4be5a3fe57f996605ffa7536fcc306b4 Mon Sep 17 00:00:00 2001 From: IceStormNG Date: Sat, 2 Mar 2024 16:41:05 +0100 Subject: [PATCH] Lower default min power to 15W and remove the .exe from the default game title. --- app/AutoTDP/AutoTDPUI.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/AutoTDP/AutoTDPUI.cs b/app/AutoTDP/AutoTDPUI.cs index 82b80ed1..8244a57b 100644 --- a/app/AutoTDP/AutoTDPUI.cs +++ b/app/AutoTDP/AutoTDPUI.cs @@ -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;