diff options
author | rubidium <rubidium@openttd.org> | 2006-05-09 08:25:31 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2006-05-09 08:25:31 +0000 |
commit | e5bd292dabdf5bbf58e5ce83c13688bbe047a62a (patch) | |
tree | 765d216fd61a2487ac5b4e9ca1bf318934ceac3c /rail_cmd.c | |
parent | 9b1bbf72ee7ebb545ba7dc0ea11a84fc18b11c45 (diff) | |
download | openttd-e5bd292dabdf5bbf58e5ce83c13688bbe047a62a.tar.xz |
(svn r4789) - Codechange: rename RoadType to RoadTileType and ROAD_{NORMAL,CROSSING,DEPOT} to ROAD_TILE_* for consistency
Diffstat (limited to 'rail_cmd.c')
-rw-r--r-- | rail_cmd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rail_cmd.c b/rail_cmd.c index aa5f80368..773c981cd 100644 --- a/rail_cmd.c +++ b/rail_cmd.c @@ -288,7 +288,7 @@ int32 CmdBuildSingleRail(TileIndex tile, uint32 flags, uint32 p1, uint32 p2) if (!EnsureNoVehicle(tile)) return CMD_ERROR; - if (GetRoadType(tile) == ROAD_NORMAL && ( + if (GetRoadTileType(tile) == ROAD_TILE_NORMAL && ( (track == TRACK_X && GetRoadBits(tile) == ROAD_Y) || (track == TRACK_Y && GetRoadBits(tile) == ROAD_X) )) { |