summaryrefslogtreecommitdiff
path: root/station.h
diff options
context:
space:
mode:
authorpeter1138 <peter1138@openttd.org>2006-02-27 19:43:19 +0000
committerpeter1138 <peter1138@openttd.org>2006-02-27 19:43:19 +0000
commitb32bd1059057abfbf5dc01dbfb624e20675246d3 (patch)
treebc4e2edd889cfc425d75bad9eecbd5323c74a484 /station.h
parentc998cf0750028eca31bbadd3192d8a1064088c9a (diff)
downloadopenttd-b32bd1059057abfbf5dc01dbfb624e20675246d3.tar.xz
(svn r3681) - [Multistop] Check the RoadStop type before check its status. This fixes an assert introduced in r3663. Also fix the return type of GetRoadStopType().
Diffstat (limited to 'station.h')
-rw-r--r--station.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/station.h b/station.h
index 53f6de5e2..54b8a6141 100644
--- a/station.h
+++ b/station.h
@@ -196,7 +196,7 @@ uint GetStationPlatforms(const Station *st, TileIndex tile);
void StationPickerDrawSprite(int x, int y, RailType railtype, int image);
RoadStop * GetRoadStopByTile(TileIndex tile, RoadStopType type);
-static inline int GetRoadStopType(TileIndex tile)
+static inline RoadStopType GetRoadStopType(TileIndex tile)
{
return (_m[tile].m5 < 0x47) ? RS_TRUCK : RS_BUS;
}