# HG changeset patch # User rubidium # Date 2009-07-24 19:17:45 # Node ID 1d729aa610062c614ff6059b09526e9ce72f6223 # Parent 661a9c036804894bff579581375d7591cd2b6c92 (svn r16945) -Fix (r16940): comments got swapped diff --git a/src/base_station_base.h b/src/base_station_base.h --- a/src/base_station_base.h +++ b/src/base_station_base.h @@ -92,7 +92,7 @@ struct BaseStation : StationPool::PoolIt * @param tile A tile that contains the platform in question * @return The length of the platform */ - virtual uint GetPlatformLength(TileIndex tile, DiagDirection dir) const = 0; + virtual uint GetPlatformLength(TileIndex tile) const = 0; /** * Determines the REMAINING length of a platform, starting at (and including) @@ -101,7 +101,7 @@ struct BaseStation : StationPool::PoolIt * @param dir The direction in which to search. * @return The platform length */ - virtual uint GetPlatformLength(TileIndex tile) const = 0; + virtual uint GetPlatformLength(TileIndex tile, DiagDirection dir) const = 0; /** * Get the base station belonging to a specific tile.