lower the minimum speed for the gpu fan zone

This commit is contained in:
uvos 2023-05-11 11:01:16 +02:00
parent 77592844fb
commit 6d767271f3

View File

@ -95,7 +95,7 @@ double gpu_fan_zone(const std::vector<Sensor>& sensors)
return 1.0; return 1.0;
} }
else else
return fan_curve(max_temp, 0.20, 1.0, 45, 75); return fan_curve(max_temp, 0.10, 1.0, 45, 75);
} }
double system_fan_zone(const std::vector<Sensor>& sensors) double system_fan_zone(const std::vector<Sensor>& sensors)