1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-08-28 08:59:09 +00:00

(svn r16945) -Fix (r16940): comments got swapped

This commit is contained in:
rubidium
2009-07-24 19:17:45 +00:00
parent 7a24fba918
commit 63f2da7492

View File

@@ -92,7 +92,7 @@ struct BaseStation : StationPool::PoolItem<&_station_pool> {
* @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::PoolItem<&_station_pool> {
* @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.