summaryrefslogtreecommitdiff
path: root/src/station_cmd.cpp
diff options
context:
space:
mode:
authorcelestar <celestar@openttd.org>2007-02-02 07:48:06 +0000
committercelestar <celestar@openttd.org>2007-02-02 07:48:06 +0000
commit90528dc78efe2d12157a3a18caa24c08a1869ff6 (patch)
tree7e18e258a052e6e184e826308ce0b3d4e043101c /src/station_cmd.cpp
parentae3982dbecaf2d888427272edf36aa980641783c (diff)
downloadopenttd-90528dc78efe2d12157a3a18caa24c08a1869ff6.tar.xz
(svn r8528) -Codechange: Rename IsBuoy_() to IsBuoy() now that the naming conflict no longer exists.
Diffstat (limited to 'src/station_cmd.cpp')
-rw-r--r--src/station_cmd.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/station_cmd.cpp b/src/station_cmd.cpp
index ecc8b9148..ed47d2847 100644
--- a/src/station_cmd.cpp
+++ b/src/station_cmd.cpp
@@ -2149,7 +2149,7 @@ static uint32 GetTileTrackStatus_Station(TileIndex tile, TransportType mode)
case TRANSPORT_WATER:
// buoy is coded as a station, it is always on open water
- if (IsBuoy_(tile)) return TRACK_BIT_ALL * 0x101;
+ if (IsBuoy(tile)) return TRACK_BIT_ALL * 0x101;
break;
case TRANSPORT_ROAD: