1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-02-01 19:25:12 +01:00

Fix #20624: Clear scrolling text cache on language change (#20993)

This commit is contained in:
mrmbernardi
2023-11-20 23:31:35 +01:00
committed by GitHub
parent 1fcfb1c578
commit efea009ed5
2 changed files with 2 additions and 0 deletions

View File

@@ -19,6 +19,7 @@
- Fix: [#20778] [Plugin] Incorrect target api when executing custom actions.
- Fix: [#20807] Tertiary colour not copied with small scenery.
- Fix: [#20964] Crash when player connects to server with a group assigned that no longer exists.
- Fix: [#20624] Scrolling text glitches after language is changed.
0.4.6 (2023-09-03)
------------------------------------------------------------------------

View File

@@ -83,6 +83,7 @@ bool LanguageOpen(int32_t id)
localisationService.OpenLanguage(id);
// Objects and their localised strings need to be refreshed
objectManager.ResetObjects();
ScrollingTextInvalidate();
return true;
}
catch (const std::exception&)