Mercurial > hg > openttd
diff src/town_cmd.cpp @ 8083:e02014b06c7f draft
(svn r11644) -Codechange: merge some functions from tunnel_map.h and bridge_map.h into tunnelbridge_map.h
author | smatz <smatz@openttd.org> |
---|---|
date | Sun, 16 Dec 2007 15:38:51 +0000 (2007-12-16) |
parents | 3f7b82356f85 |
children | 5d7c61206209 |
line wrap: on
line diff
--- a/src/town_cmd.cpp +++ b/src/town_cmd.cpp @@ -44,6 +44,8 @@ #include "autoslope.h" #include "waypoint.h" #include "transparency.h" +#include "tunnelbridge_map.h" + /* Initialize the town-pool */ DEFINE_OLD_POOL_GENERIC(Town, Town) @@ -1062,9 +1064,9 @@ /* Reached a tunnel/bridge? Then continue at the other side of it. */ if (IsTileType(tile, MP_TUNNELBRIDGE)) { - if (IsTunnel(tile) && GetTunnelTransportType(tile) == TRANSPORT_ROAD) { + if (IsTunnel(tile) && GetTunnelBridgeTransportType(tile) == TRANSPORT_ROAD) { *tile_ptr = GetOtherTunnelEnd(tile); - } else if (IsBridge(tile) && GetBridgeTransportType(tile) == TRANSPORT_ROAD) { + } else if (IsBridge(tile) && GetTunnelBridgeTransportType(tile) == TRANSPORT_ROAD) { *tile_ptr = GetOtherBridgeEnd(tile); } return;