Changeset - r26380:2e2e03ba4159
[Not reviewed]
master
0 1 0
PeterN - 2 years ago 2022-09-20 19:54:42
peter1138@openttd.org
Fix: Wrong string used to determine size of zoomed out station sign. (#10036)
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
src/station_cmd.cpp
Show inline comments
 
@@ -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));
 

	
0 comments (0 inline, 0 general)