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:
committed by
GitHub
parent
a50fa5e04b
commit
6ac6db489c
@@ -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()))
|
||||
|
||||
Reference in New Issue
Block a user