summaryrefslogtreecommitdiff
path: root/src/station_base.h
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2009-07-24 11:47:12 +0000
committerrubidium <rubidium@openttd.org>2009-07-24 11:47:12 +0000
commitcf38a5bee6628f4be58a1bd7774658cf86807d5c (patch)
tree2c2890dd002ff6aee0e4fc1905796b623a040153 /src/station_base.h
parent2c6b5237f68b1ce444f35eef6e31e7c0ff49d7cc (diff)
downloadopenttd-cf38a5bee6628f4be58a1bd7774658cf86807d5c.tar.xz
(svn r16939) -Codechange: s/RailwayStation/RailStation/ to unify the way it's written.
Diffstat (limited to 'src/station_base.h')
-rw-r--r--src/station_base.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/station_base.h b/src/station_base.h
index 772c204e3..d9c7369b3 100644
--- a/src/station_base.h
+++ b/src/station_base.h
@@ -133,7 +133,7 @@ public:
/* virtual */ FORCEINLINE bool TileBelongsToRailStation(TileIndex tile) const
{
- return IsRailwayStationTile(tile) && GetStationIndex(tile) == this->index;
+ return IsRailStationTile(tile) && GetStationIndex(tile) == this->index;
}
/* virtual */ uint32 GetNewGRFVariable(const ResolverObject *object, byte variable, byte parameter, bool *available) const;