1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-20 21:43:06 +01:00

Fix text colour in Recent Messages

This commit is contained in:
Michael Steenbeek
2024-05-29 00:08:24 +02:00
committed by GitHub
parent a50fa5e04b
commit 6ac6db489c
2 changed files with 4 additions and 1 deletions

View File

@@ -208,7 +208,9 @@ static Widget window_news_widgets[] = {
{
auto ft = Formatter();
ft.Add<const char*>(newsItem.Text.c_str());
DrawTextWrapped(dpi, { 2, y + lineHeight }, 325, STR_BOTTOM_TOOLBAR_NEWS_TEXT, ft, { FontStyle::Small });
DrawTextWrapped(
dpi, { 2, y + lineHeight }, 325, STR_BOTTOM_TOOLBAR_NEWS_TEXT, ft,
{ COLOUR_BRIGHT_GREEN, FontStyle::Small });
}
// Subject button
if ((newsItem.TypeHasSubject()) && !(newsItem.HasButton()))