mirror of
https://github.com/GTAmodding/re3.git
synced 2024-11-15 16:48:59 +00:00
fix
This commit is contained in:
parent
b075b0fccf
commit
b3571706d1
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue