(svn r16899) -Fix (r16896): Missing 'return'.

This commit is contained in:
frosch 2009-07-21 16:20:02 +00:00
parent 4ba0e2301a
commit f09df64608
1 changed files with 1 additions and 0 deletions

View File

@ -382,6 +382,7 @@ void Station::GetTileArea(TileArea *ta, StationType type) const
ta->tile = this->airport_tile;
ta->w = this->Airport()->size_x;
ta->h = this->Airport()->size_y;
return;
case STATION_TRUCK:
ta->tile = this->truck_stops != NULL ? this->truck_stops->xy : INVALID_TILE;