(svn r8528) -Codechange: Rename IsBuoy_() to IsBuoy() now that the naming conflict no longer exists.

This commit is contained in:
celestar
2007-02-02 07:48:06 +00:00
parent ae3982dbec
commit 90528dc78e
4 changed files with 6 additions and 6 deletions

View File

@@ -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;
}