1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-03-12 04:14:05 +00:00

fixed first weather transition being instant

This commit is contained in:
scrawl 2012-04-07 16:33:03 +02:00
parent dbde8405f7
commit dbf7547003

View File

@ -341,7 +341,6 @@ void WeatherManager::setWeather(const String& weather, bool instant)
{
mNextWeather = "";
mCurrentWeather = weather;
mFirstUpdate = false;
}
else
{
@ -355,6 +354,7 @@ void WeatherManager::setWeather(const String& weather, bool instant)
mNextWeather = weather;
mRemainingTransitionTime = mWeatherSettings[mCurrentWeather].mTransitionDelta*24.f*3600;
}
mFirstUpdate = false;
}
WeatherResult WeatherManager::getResult(const String& weather)