From 917fb77f0e265d4a6dc5cc87e5d2be844ed78f5d Mon Sep 17 00:00:00 2001 From: Tulio Leao Date: Thu, 10 Sep 2020 21:19:53 -0300 Subject: [PATCH] Revert regressed warning on window_install_track_paint --- src/openrct2-ui/windows/InstallTrack.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/openrct2-ui/windows/InstallTrack.cpp b/src/openrct2-ui/windows/InstallTrack.cpp index 40938d06cf..6157a863d0 100644 --- a/src/openrct2-ui/windows/InstallTrack.cpp +++ b/src/openrct2-ui/windows/InstallTrack.cpp @@ -241,7 +241,9 @@ static void window_install_track_paint(rct_window* w, rct_drawpixelinfo* dpi) if (!gTrackDesignSceneryToggle) { // Scenery not available - DrawTextEllipsised(dpi, screenPos, 308, STR_BLACK_STRING, Formatter::Common(), COLOUR_BLACK, TextAlignment::CENTRE); + DrawTextEllipsised( + dpi, screenPos, 308, STR_DESIGN_INCLUDES_SCENERY_WHICH_IS_UNAVAILABLE, Formatter::Common(), COLOUR_BLACK, + TextAlignment::CENTRE); screenPos.y -= LIST_ROW_HEIGHT; } }