diff options
author | discip <[email protected]> | 2023-07-24 00:06:50 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2023-07-24 00:06:50 +0200 |
commit | 0f6c1b686e3f631a880d781d55c59b2c259f48af (patch) | |
tree | b5bf5a8cf160e959f8f1e5d60e2fb7cc781f73b3 /source | |
parent | 8ac43645b77db56028710ff23c83aedba9e3078b (diff) | |
parent | f83ebc8c812f84920f7709c5000144a018205899 (diff) | |
download | IronOS-0f6c1b686e3f631a880d781d55c59b2c259f48af.tar.gz IronOS-0f6c1b686e3f631a880d781d55c59b2c259f48af.zip |
Merge branch 'dev' into Short-Detection
Diffstat (limited to 'source')
-rw-r--r-- | source/Core/Src/settingsGUI.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/Core/Src/settingsGUI.cpp b/source/Core/Src/settingsGUI.cpp index 4cd4e699..87a17b6a 100644 --- a/source/Core/Src/settingsGUI.cpp +++ b/source/Core/Src/settingsGUI.cpp @@ -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); } |