Wind speed shouldn't be rounded

This commit is contained in:
leblane 2023-06-03 00:39:49 +03:00
parent 38da7b04ec
commit 42a7285537

View file

@ -318,7 +318,7 @@ void WatchFacePages::Weather::Resync()
float windSpeedKmh = std::stof(windSpeed);
// Convert to m/s
m_currentWindSpeed = std::round(windSpeedKmh * 0.277778);
m_currentWindSpeed = windSpeedKmh * 0.277778;
m_features.wifi.Disconnect();