From 929fae7b685a21e2337736084e42731f84cf8cba Mon Sep 17 00:00:00 2001 From: tron Date: Sat, 11 Mar 2006 09:10:46 +0000 Subject: (svn r3816) Use existing accessors --- depot.h | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'depot.h') diff --git a/depot.h b/depot.h index 6af2dc37f..a3efdf233 100644 --- a/depot.h +++ b/depot.h @@ -8,6 +8,7 @@ #include "direction.h" #include "pool.h" +#include "road_map.h" #include "tile.h" #include "variables.h" @@ -102,10 +103,8 @@ static inline DiagDirection GetDepotDirection(TileIndex tile, TransportType type switch (type) { - case TRANSPORT_RAIL: - case TRANSPORT_ROAD: - /* Rail and road store a diagonal direction in bits 0 and 1 */ - return (DiagDirection)GB(_m[tile].m5, 0, 2); + case TRANSPORT_RAIL: return (DiagDirection)GB(_m[tile].m5, 0, 2); + case TRANSPORT_ROAD: return GetRoadDepotDirection(tile); case TRANSPORT_WATER: /* Water is stubborn, it stores the directions in a different order. */ switch (GB(_m[tile].m5, 0, 2)) { -- cgit v1.2.3-70-g09d2