1
0
forked from me/IronOS

Fixup for temp in F bug

This commit is contained in:
Ben V. Brown
2023-07-21 21:15:50 +10:00
parent 52dd27cc07
commit 65dd3e879c

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);
}