1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-26 16:24:35 +01:00

Fix #4041: Garbled park option on scenario editor with custom theme (#13126)

* Fix #4041: Garbled park option on scenario editor with custom theme

* Remove duplicate string draw
This commit is contained in:
Tulio Leao
2020-10-08 10:35:25 -03:00
committed by GitHub
parent 6ce60498c7
commit 1cf0f91199
2 changed files with 1 additions and 1 deletions

View File

@@ -5,6 +5,7 @@
- Feature: [#13096] Add Esperanto translation.
- Change: [#9568] Change lift sounds of Reverser Roller Coaster and Compact Inverted Coaster to better fitting ones.
- Fix: [#3200] Close Construction window upon selecting vehicle page.
- Fix: [#4041] Garbled park option on scenario editor with custom theme.
- Fix: [#5904] Empty errors on tile inspector base height change.
- Fix: [#6086] Cannot install existing track design with another name.
- Fix: [#8015] RCT2 files are not found when put into the OpenRCT2 folder.

View File

@@ -1351,7 +1351,6 @@ static void window_editor_scenario_options_park_paint(rct_window* w, rct_drawpix
// Pay for park or rides label
screenCoords = w->windowPos
+ ScreenCoordsXY{ w->widgets[WIDX_PAY_FOR_PARK_OR_RIDES].left + 1, w->widgets[WIDX_PAY_FOR_PARK_OR_RIDES].top };
gfx_draw_string_left(dpi, STR_FREE_PARK_ENTER, nullptr, COLOUR_BLACK, screenCoords);
// Pay for park and/or rides value
if (gParkFlags & PARK_FLAGS_UNLOCK_ALL_PRICES)