Skip to content

Commit

Permalink
fix: remove temperature rounding
Browse files Browse the repository at this point in the history
  • Loading branch information
Ghoelian committed Nov 21, 2024
1 parent e33750c commit d38b435
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/displayapp/screens/WatchFaceCasioStyleG7710.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -386,7 +386,6 @@ void WatchFaceCasioStyleG7710::Refresh() {
tempUnit = 'F';
}

temp = temp / 100 + (temp % 100 >= 50 ? 1 : 0);
lv_label_set_text_fmt(label_temperature, "%d°%c", temp, tempUnit);
lv_label_set_text(weatherIcon, Symbols::GetSymbol(optCurrentWeather->iconId));
} else {
Expand Down

0 comments on commit d38b435

Please sign in to comment.