summaryrefslogtreecommitdiff
path: root/src/station_map.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
commitc95736046bf0883ce7e23f6699d2dd285ecf1a59 (patch)
tree7e18e258a052e6e184e826308ce0b3d4e043101c /src/station_map.cpp
parentbf4f9a84bc672157650152d888bc98202ec8d728 (diff)
downloadopenttd-c95736046bf0883ce7e23f6699d2dd285ecf1a59.tar.xz
(svn r8528) -Codechange: Rename IsBuoy_() to IsBuoy() now that the naming conflict no longer exists.
Diffstat (limited to 'src/station_map.cpp')
-rw-r--r--src/station_map.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/station_map.cpp b/src/station_map.cpp
index 6341cd6ba..b8c0fda52 100644
--- a/src/station_map.cpp
+++ b/src/station_map.cpp
@@ -14,6 +14,6 @@ StationType GetStationType(TileIndex t)
if (IsBusStop(t)) return STATION_BUS;
if (IsOilRig(t)) return STATION_OILRIG;
if (IsDock(t)) return STATION_DOCK;
- assert(IsBuoy_(t));
+ assert(IsBuoy(t));
return STATION_BUOY;
}