From 76792723badac45310cb796d09267cf415f64730 Mon Sep 17 00:00:00 2001 From: Ted John Date: Sat, 28 May 2016 23:08:01 +0100 Subject: [PATCH] fix saving of temperature to SV6 --- src/rct2/S6Exporter.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/rct2/S6Exporter.cpp b/src/rct2/S6Exporter.cpp index 591642f85c..a03bff4dd6 100644 --- a/src/rct2/S6Exporter.cpp +++ b/src/rct2/S6Exporter.cpp @@ -424,7 +424,8 @@ void S6Exporter::Export() _s6.climate_update_timer = gClimateUpdateTimer; _s6.current_weather = gClimateCurrentWeather; _s6.next_weather = gClimateNextWeather; - _s6.temperature = gClimateNextTemperature; + _s6.temperature = gClimateCurrentTemperature; + _s6.next_temperature = gClimateNextTemperature; _s6.current_weather_effect = gClimateCurrentWeatherEffect; _s6.next_weather_effect = gClimateNextWeatherEffect; _s6.current_weather_gloom = gClimateCurrentWeatherGloom;