Fix: Wrong string used to determine size of zoomed out station sign. (#10036)

This commit is contained in:
PeterN 2022-09-20 20:54:42 +01:00 committed by GitHub
parent fa5e2ca276
commit f59f0195e3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -424,7 +424,7 @@ void Station::UpdateVirtCoord()
SetDParam(0, this->index);
SetDParam(1, this->facilities);
this->sign.UpdatePosition(pt.x, pt.y, STR_VIEWPORT_STATION);
this->sign.UpdatePosition(pt.x, pt.y, STR_VIEWPORT_STATION, STR_VIEWPORT_STATION_TINY);
_viewport_sign_kdtree.Insert(ViewportSignKdtreeItem::MakeStation(this->index));