1
0
Fork 0

Fix d13b0e0813: "New vehicle now available!" message is wrong colour.

pull/13586/head
Peter Nelson 2025-02-16 22:21:03 +00:00
parent fd4adc55e3
commit 0d7a18a6dc
No known key found for this signature in database
GPG Key ID: 8EF8F0A467DF75ED
1 changed files with 1 additions and 1 deletions

View File

@ -553,7 +553,7 @@ struct NewsWindow : Window {
case WID_N_VEH_INFO: {
assert(std::holds_alternative<EngineID>(ni->ref1));
EngineID engine = std::get<EngineID>(this->ni->ref1);
DrawStringMultiLine(r.left, r.right, r.top, r.bottom, GetEngineInfoString(engine), TC_FROMSTRING, SA_CENTER);
DrawStringMultiLine(r.left, r.right, r.top, r.bottom, GetEngineInfoString(engine), TC_BLACK, SA_CENTER);
break;
}
}