mirror of
https://github.com/jkocon/g-helper.git
synced 2026-02-23 13:00:52 +01:00
Lower default min power to 15W and remove the .exe from the default game title.
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user