diff options
author | tron <tron@openttd.org> | 2007-02-25 11:36:19 +0000 |
---|---|---|
committer | tron <tron@openttd.org> | 2007-02-25 11:36:19 +0000 |
commit | 3ce4baa9fc9b8973503fdaea37a408ff0852c659 (patch) | |
tree | 7356de7ae644522ac46c52158203c96f0a69cb23 /src/rail.cpp | |
parent | 1ce43c1a3754499902a2749f9db3c426595ab02f (diff) | |
download | openttd-3ce4baa9fc9b8973503fdaea37a408ff0852c659.tar.xz |
(svn r8899) -Fix
Remove the unused second parameter from GetTileRailType()
Diffstat (limited to 'src/rail.cpp')
-rw-r--r-- | src/rail.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rail.cpp b/src/rail.cpp index 2255b428b..dd2674d2d 100644 --- a/src/rail.cpp +++ b/src/rail.cpp @@ -102,7 +102,7 @@ extern const Trackdir _dir_to_diag_trackdir[] = { }; -RailType GetTileRailType(TileIndex tile, Track track) +RailType GetTileRailType(TileIndex tile) { switch (GetTileType(tile)) { case MP_RAILWAY: |