1
0
forked from me/IronOS

Merge branch 'dev' into Short-Detection

This commit is contained in:
discip
2023-07-24 00:06:50 +02:00
committed by GitHub
5 changed files with 56 additions and 17 deletions

View File

@@ -734,7 +734,7 @@ static void setTempF(const enum SettingsOptions option) {
Temp = ((Temp - 32) * 5) / 9;
}
// Rescale to be multiples of 10
Temp = BoostTemp / 10;
Temp = Temp / 10;
Temp *= 10;
setSettingValue(option, Temp);
}