From 0b73781df85e995afbc3d51e7c57cec928ca0094 Mon Sep 17 00:00:00 2001 From: Michael Steenbeek Date: Wed, 3 Mar 2021 16:00:03 +0100 Subject: [PATCH] Fix #14216: Second line of guest thoughts is set in wrong font --- src/openrct2-ui/windows/Guest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/openrct2-ui/windows/Guest.cpp b/src/openrct2-ui/windows/Guest.cpp index fe16272cb2..2ea9124588 100644 --- a/src/openrct2-ui/windows/Guest.cpp +++ b/src/openrct2-ui/windows/Guest.cpp @@ -1808,7 +1808,7 @@ void window_guest_thoughts_paint(rct_window* w, rct_drawpixelinfo* dpi) auto ft = Formatter(); peep_thought_set_format_args(thought, ft); - screenCoords.y += DrawTextWrapped(dpi, screenCoords, width, STR_BLACK_STRING, ft); + screenCoords.y += DrawTextWrapped(dpi, screenCoords, width, STR_BLACK_STRING, ft, { FontSpriteBase::SMALL }); // If this is the last visible line end drawing. if (screenCoords.y > w->windowPos.y + window_guest_thoughts_widgets[WIDX_PAGE_BACKGROUND].bottom - 32)