From 715bee332be63de4a2a89a2168d8f60c911ffdb6 Mon Sep 17 00:00:00 2001 From: celestar Date: Tue, 4 Apr 2006 11:35:52 +0000 Subject: (svn r4272) -Codechange: Moved the map-accessing stuff from station.h into station_map.h --- rail.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'rail.c') diff --git a/rail.c b/rail.c index 688ec9aab..f89fcaa3a 100644 --- a/rail.c +++ b/rail.c @@ -4,7 +4,7 @@ #include "openttd.h" #include "bridge_map.h" #include "rail.h" -#include "station.h" +#include "station_map.h" #include "tunnel_map.h" /* XXX: Below 3 tables store duplicate data. Maybe remove some? */ @@ -119,7 +119,7 @@ RailType GetTileRailType(TileIndex tile, Trackdir trackdir) break; case MP_STATION: - if (IsTrainStationTile(tile)) return GetRailType(tile); + if (IsRailwayStationTile(tile)) return GetRailType(tile); break; case MP_TUNNELBRIDGE: -- cgit v1.2.3-54-g00ecf