From e4cf2ba1b304a0b424a50a6143243172b9c5264d Mon Sep 17 00:00:00 2001 From: tron Date: Wed, 5 Jan 2005 13:32:03 +0000 Subject: (svn r1386) Move TileIndexDiff to map.h Move _tileoffs_by_dir to map.[ch] and encapsulate it in TileOffsByDir() --- road_gui.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'road_gui.c') diff --git a/road_gui.c b/road_gui.c index 5d78fb621..c87b692a2 100644 --- a/road_gui.c +++ b/road_gui.c @@ -65,7 +65,7 @@ static void PlaceRoad_Tunnel(uint tile) static void BuildRoadOutsideStation(uint tile, int direction) { static const byte _roadbits_by_dir[4] = {2,1,8,4}; - tile += _tileoffs_by_dir[direction]; + tile += TileOffsByDir(direction); // if there is a roadpiece just outside of the station entrance, build a connecting route if (IS_TILETYPE(tile, MP_STREET) && !(_map5[tile]&0x20)) { DoCommandP(tile, _roadbits_by_dir[direction], 0, NULL, CMD_BUILD_ROAD); -- cgit v1.2.3-54-g00ecf