From 6a74cb27870168271f6b249badcefbeb1da3af8c Mon Sep 17 00:00:00 2001 From: tron Date: Thu, 23 Feb 2006 12:24:19 +0000 Subject: (svn r3660) Convert further road bits and type references to the functions/enums --- town_cmd.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'town_cmd.c') diff --git a/town_cmd.c b/town_cmd.c index f4b14909f..1d957a39e 100644 --- a/town_cmd.c +++ b/town_cmd.c @@ -4,6 +4,7 @@ #include "openttd.h" #include "functions.h" #include "strings.h" +#include "road.h" #include "table/strings.h" #include "table/sprites.h" #include "map.h" @@ -489,7 +490,7 @@ static bool IsRoadAllowedHere(TileIndex tile, int dir) // No, try to build one in the direction. // if that fails clear the land, and if that fails exit. // This is to make sure that we can build a road here later. - if (CmdFailed(DoCommandByTile(tile, (dir&1)?0xA:0x5, 0, DC_AUTO, CMD_BUILD_ROAD)) && + if (CmdFailed(DoCommandByTile(tile, (dir & 1 ? ROAD_X : ROAD_Y), 0, DC_AUTO, CMD_BUILD_ROAD)) && CmdFailed(DoCommandByTile(tile, 0, 0, DC_AUTO, CMD_LANDSCAPE_CLEAR))) return false; } -- cgit v1.2.3-54-g00ecf