Skip to content

Commit

Permalink
Fixup for temp in F bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Ralim committed Jul 21, 2023
1 parent 94ebaf0 commit ae4430c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/Core/Src/settingsGUI.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -732,7 +732,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);
}
Expand Down

0 comments on commit ae4430c

Please sign in to comment.