File diff r27614:d8a8c7942ff2 → r27615:4608ed940341
src/station_cmd.cpp
Show inline comments
 
@@ -458,14 +458,13 @@ void UpdateAllStationVirtCoords()
 
		st->UpdateVirtCoord();
 
	}
 
}
 

	
 
void BaseStation::FillCachedName() const
 
{
 
	int64 args_array[] = { this->index };
 
	StringParameters tmp_params(args_array);
 
	auto tmp_params = MakeParameters(this->index);
 
	this->cached_name = GetStringWithArgs(Waypoint::IsExpected(this) ? STR_WAYPOINT_NAME : STR_STATION_NAME, tmp_params);
 
}
 

	
 
void ClearAllStationCachedNames()
 
{
 
	for (BaseStation *st : BaseStation::Iterate()) {