mirror of
https://github.com/jkocon/g-helper.git
synced 2026-02-23 13:00:52 +01:00
Fixes for stability checks
This commit is contained in:
@@ -452,13 +452,13 @@ namespace GHelper.AutoTDP
|
|||||||
|
|
||||||
if (LowestStableStability > 120)
|
if (LowestStableStability > 120)
|
||||||
{
|
{
|
||||||
//if stable for long time try to reduce it a bit
|
//if stable for long time try to reduce it again
|
||||||
LowestStableTDP -= 0.5;
|
LowestStableTDP = LowestTDP + (LowestTDP * 0.10); ;
|
||||||
LowestStableStability = 0;
|
LowestStableStability = 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (LowestTDP - 0.25 <= CurrentTDP && CurrentTDP >= LowestTDP + 0.25)
|
if (LowestTDP - 0.25 <= CurrentTDP && CurrentTDP <= LowestTDP + 0.25)
|
||||||
{
|
{
|
||||||
LowestStableStability++;
|
LowestStableStability++;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user