(svn r8280) -Codechange: Remove unnecessarily complex assignment of waypoint string ID.

This commit is contained in:
peter1138 2007-01-19 17:46:44 +00:00
parent 97d558760c
commit 4d6a7b7427
1 changed files with 1 additions and 1 deletions

View File

@ -361,7 +361,7 @@ Station *ComposeWaypointStation(TileIndex tile)
stat.train_tile = stat.xy = wp->xy;
stat.town = GetTown(wp->town_index);
stat.string_id = wp->string == STR_NULL ? /* FIXME? */ 0 : wp->string;
stat.string_id = wp->string;
stat.build_date = wp->build_date;
return &stat;