Better calibration for tdp adjustments to not cause extreme stutters

This commit is contained in:
IceStormNG
2024-03-01 18:56:55 +01:00
parent 8cd256463a
commit f1198440d4
2 changed files with 45 additions and 19 deletions

View File

@@ -9,5 +9,10 @@ namespace GHelper.AutoTDP
public int MinTdp { get; set; }
public int MaxTdp { get; set; }
public bool Enabled { get; set; }
public int GetTDPFPS()
{
return TargetFPS - 1;
}
}
}