1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-15 19:13:07 +01:00

Fix #20196: New scenarios start with an incorrect temperature

This commit is contained in:
tanzimchowdh
2024-01-22 14:18:31 -05:00
committed by GitHub
parent dcd1f60f4f
commit cba53fd3ce
2 changed files with 2 additions and 1 deletions

View File

@@ -4,6 +4,7 @@
- Improved: [#18632] Land ownership and construction rights are now shown on top of the water.
- Improved: [#20951] Activate OpenRCT2 window after using native file dialog on macOS.
- Change: [#21225] Raise maximum allowed misc entities to 1600.
- Fix: [#20196] New scenarios start with an incorrect temperature.
- Fix: [#20255] Images from the last hovered-over coaster in the object selection are not freed.
- Fix: [#20616] Confirmation button in the track designers quit prompt has the wrong text.
- Fix: [#20628] Moving caret using Ctrl+left can move too far when using a multibyte grapheme.

View File

@@ -45,7 +45,7 @@ GameActions::Result ClimateSetAction::Query() const
GameActions::Result ClimateSetAction::Execute() const
{
OpenRCT2::GetGameState().Climate = ClimateType{ _climate };
ClimateReset(_climate);
GfxInvalidateScreen();