From 8db0933ee2a6a76e15fc67806c5f3f1fd500fe0a Mon Sep 17 00:00:00 2001 From: Ted John Date: Sat, 28 May 2016 23:11:47 +0100 Subject: [PATCH] fix loading of temperature from SV6 --- src/rct2/S6Importer.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/rct2/S6Importer.cpp b/src/rct2/S6Importer.cpp index 976b8626f7..ddb1d70407 100644 --- a/src/rct2/S6Importer.cpp +++ b/src/rct2/S6Importer.cpp @@ -357,7 +357,8 @@ void S6Importer::Import() gClimateUpdateTimer = _s6.climate_update_timer; gClimateCurrentWeather = _s6.current_weather; gClimateNextWeather = _s6.next_weather; - gClimateNextTemperature = _s6.temperature; + gClimateCurrentTemperature = _s6.temperature; + gClimateNextTemperature = _s6.next_temperature; gClimateCurrentWeatherEffect = _s6.current_weather_effect; gClimateNextWeatherEffect = _s6.next_weather_effect; gClimateCurrentWeatherGloom = _s6.current_weather_gloom;