From 9be7b89d8f0581d9db12d4dc0708c2cf3af8e10e Mon Sep 17 00:00:00 2001 From: AuraSpecs Date: Sun, 3 Nov 2024 10:50:25 +0100 Subject: [PATCH] Quick patch for About screen (#23117) It seems there's a bigger issue going on atm. This fixes the problem for now, but when we add more names we will have to extend this more. Reason being that the it centers the text in the line, rather than extending it further downwards. I personally do not know how to fix that, but this should suffice for now. --- src/openrct2-ui/windows/About.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/openrct2-ui/windows/About.cpp b/src/openrct2-ui/windows/About.cpp index e03aab27f8..1ff71fe021 100644 --- a/src/openrct2-ui/windows/About.cpp +++ b/src/openrct2-ui/windows/About.cpp @@ -233,7 +233,7 @@ namespace OpenRCT2::Ui::Windows textCoords += ScreenCoordsXY( 0, DrawTextWrapped(dpi, textCoords, textWidth, STR_ABOUT_FAIRGROUND_ORGAN, ft2, tp) + 5); // Fairground organ textCoords += ScreenCoordsXY( - 0, DrawTextWrapped(dpi, textCoords, textWidth, STR_ABOUT_SPECIAL_THANKS_1, ft2, tp)); // Special Thanks + 0, DrawTextWrapped(dpi, textCoords, textWidth, STR_ABOUT_SPECIAL_THANKS_1, ft2, tp) + 7); // Special Thanks textCoords += ScreenCoordsXY( 0, DrawTextWrapped(dpi, textCoords, textWidth, STR_ABOUT_SPECIAL_THANKS_2, ft2, tp)); // Company names }