diff --git a/src/lang/english.txt b/src/lang/english.txt index a331a7032f..5c1d63fbb0 100644 --- a/src/lang/english.txt +++ b/src/lang/english.txt @@ -5609,7 +5609,6 @@ STR_JUST_BIG_RAW_STRING :{BIG_FONT}{RAW_ # Slightly 'raw' stringcodes with colour or size STR_WHITE_SIGN :{WHITE}{SIGN} -STR_TINY_BLACK_STATION :{TINY_FONT}{BLACK}{STATION} STR_TINY_BLACK_HEIGHT :{TINY_FONT}{BLACK}{HEIGHT} STR_TINY_RIGHT_ARROW :{TINY_FONT}{RIGHT_ARROW} diff --git a/src/vehicle_gui.cpp b/src/vehicle_gui.cpp index c7642d9484..6a90b7833b 100644 --- a/src/vehicle_gui.cpp +++ b/src/vehicle_gui.cpp @@ -1564,7 +1564,7 @@ static void DrawSmallOrderList(const Vehicle *v, int left, int right, int y, uin if (order->IsType(OT_GOTO_STATION)) { SetDParam(0, order->GetDestination()); - DrawString(left + l_offset, right - r_offset, y, STR_TINY_BLACK_STATION); + DrawString(left + l_offset, right - r_offset, y, STR_STATION_NAME, TC_BLACK, SA_LEFT, false, FS_SMALL); y += FONT_HEIGHT_SMALL; if (++i == 4) break; @@ -1589,7 +1589,7 @@ static void DrawSmallOrderList(const Order *order, int left, int right, int y, u while (order != nullptr) { if (order->IsType(OT_GOTO_STATION)) { SetDParam(0, order->GetDestination()); - DrawString(left + l_offset, right - r_offset, y, STR_TINY_BLACK_STATION); + DrawString(left + l_offset, right - r_offset, y, STR_STATION_NAME, TC_BLACK, SA_LEFT, false, FS_SMALL); y += FONT_HEIGHT_SMALL; if (++i == 4) break;