This commit is contained in:
Serge
2023-09-12 19:31:51 +02:00
parent 335f5b38a5
commit bd3b2647b4
5 changed files with 13 additions and 4 deletions

View File

@@ -592,8 +592,6 @@ namespace GHelper
int Min = FanSensorControl.DEFAULT_FAN_MIN;
int Max = FanSensorControl.GetFanMax(device);
if (device == AsusFan.XGM) Max = 72;
if (fanRpm)
return (200 * Math.Round((float)(Min * 100 + (Max - Min) * percentage) / 200)).ToString() + unit;
else