diff options
author | rubidium <rubidium@openttd.org> | 2009-07-24 19:17:45 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2009-07-24 19:17:45 +0000 |
commit | 63f2da749283621907039d551aaeb1294539fc92 (patch) | |
tree | 5e293f047410121d363d95e33d64e1c879897ed1 /src | |
parent | 7a24fba918f924df87f4fbc9bb304068d6b71faa (diff) | |
download | openttd-63f2da749283621907039d551aaeb1294539fc92.tar.xz |
(svn r16945) -Fix (r16940): comments got swapped
Diffstat (limited to 'src')
-rw-r--r-- | src/base_station_base.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/base_station_base.h b/src/base_station_base.h index a5dbd124f..0c9aee77b 100644 --- a/src/base_station_base.h +++ b/src/base_station_base.h @@ -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. |