(svn r2470) - Fix: Display station signs correctly in smallest zoom level in transparent buildings or tranparant station signs mode. (Peter1138)

This commit is contained in:
hackykid
2005-06-21 21:13:10 +00:00
parent a1d81b3558
commit b9cca2988c
2 changed files with 2 additions and 2 deletions

View File

@@ -896,7 +896,7 @@ static void ViewportAddStationNames(DrawPixelInfo *dpi)
right > st->sign.left &&
left < st->sign.left + st->sign.width_2*4) {
sstd=AddStringToDraw(st->sign.left + 1, st->sign.top + 1, STR_305D_0, st->index, st->facilities, 0);
sstd=AddStringToDraw(st->sign.left + 1, st->sign.top + 1, STR_STATION_SIGN_TINY, st->index, st->facilities, 0);
if (sstd != NULL) {
sstd->color = (st->owner == OWNER_NONE || !st->facilities) ? 0xE : _player_colors[st->owner];
sstd->width = st->sign.width_2 | 0x8000;