From 7f3d56041b97972b67e5788dafafc0950b29c872 Mon Sep 17 00:00:00 2001 From: frosch Date: Wed, 20 Feb 2008 17:49:50 +0000 Subject: (svn r12199) -Codechange: Remove magic around the results of GetTileTrackStatus(). --- src/landscape.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/landscape.cpp') diff --git a/src/landscape.cpp b/src/landscape.cpp index 5641c8924..6bad6e8a4 100644 --- a/src/landscape.cpp +++ b/src/landscape.cpp @@ -437,16 +437,16 @@ void DoClearSquare(TileIndex tile) MarkTileDirtyByTile(tile); } -/** Returns trackdirbits in lower two bytes and additional info about track status in upper two bytes +/** Returns information about trackdirs and signal states. * If there is any trackbit at 'side', return all trackdirbits. - * For TRANSPORT_ROAD, return 0 if there is no roadbit (of given subtype) at given side. + * For TRANSPORT_ROAD, return no trackbits if there is no roadbit (of given subtype) at given side. * @param tile tile to get info about * @param mode transport type * @param sub_mode for TRANSPORT_ROAD, roadtypes to check * @param side side we are entering from, INVALID_DIAGDIR to return all trackbits * @return trackdirbits and other info depending on 'mode' */ -uint32 GetTileTrackStatus(TileIndex tile, TransportType mode, uint sub_mode, DiagDirection side) +TrackStatus GetTileTrackStatus(TileIndex tile, TransportType mode, uint sub_mode, DiagDirection side) { return _tile_type_procs[GetTileType(tile)]->get_tile_track_status_proc(tile, mode, sub_mode, side); } -- cgit v1.2.3-54-g00ecf