diff options
author | Nikolay Korolev <nickvnuk@gmail.com> | 2020-04-08 19:30:45 +0200 |
---|---|---|
committer | Nikolay Korolev <nickvnuk@gmail.com> | 2020-04-08 19:30:45 +0200 |
commit | b3571706d1cd89aed852ceecf57b130dff0343e0 (patch) | |
tree | 60834db959786deead35eb4712238c78c6ed5298 | |
parent | Merge branch 'master' into garages_dev (diff) | |
download | re3-b3571706d1cd89aed852ceecf57b130dff0343e0.tar re3-b3571706d1cd89aed852ceecf57b130dff0343e0.tar.gz re3-b3571706d1cd89aed852ceecf57b130dff0343e0.tar.bz2 re3-b3571706d1cd89aed852ceecf57b130dff0343e0.tar.lz re3-b3571706d1cd89aed852ceecf57b130dff0343e0.tar.xz re3-b3571706d1cd89aed852ceecf57b130dff0343e0.tar.zst re3-b3571706d1cd89aed852ceecf57b130dff0343e0.zip |
-rw-r--r-- | src/render/Weather.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/render/Weather.cpp b/src/render/Weather.cpp index 5e19987a..0970b94b 100644 --- a/src/render/Weather.cpp +++ b/src/render/Weather.cpp @@ -111,7 +111,7 @@ void CWeather::Init(void) void CWeather::Update(void) { - float fNewInterpolation = CClock::GetMinutes() / 60.0f; + float fNewInterpolation = CClock::GetMinutes() * 1.0f / 60; if (fNewInterpolation < InterpolationValue) { // new hour OldWeatherType = NewWeatherType; |