1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-08-12 09:09:09 +00:00

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

This commit is contained in:
2022-09-20 20:54:42 +01:00
committed by GitHub
parent fa5e2ca276
commit f59f0195e3

View File

@@ -424,7 +424,7 @@ void Station::UpdateVirtCoord()
SetDParam(0, this->index); SetDParam(0, this->index);
SetDParam(1, this->facilities); 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)); _viewport_sign_kdtree.Insert(ViewportSignKdtreeItem::MakeStation(this->index));