diff options
author | rubidium <rubidium@openttd.org> | 2006-05-09 08:17:33 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2006-05-09 08:17:33 +0000 |
commit | 9b1bbf72ee7ebb545ba7dc0ea11a84fc18b11c45 (patch) | |
tree | 975779e5070a23a2c674c5848eaf2fef8b8d766a /road_cmd.c | |
parent | a0e387597ac53c810a24a01521aa3e802964e8d5 (diff) | |
download | openttd-9b1bbf72ee7ebb545ba7dc0ea11a84fc18b11c45.tar.xz |
(svn r4788) - Codechange: RAILTYPE_{NORMAL,ELECTRIC,...} and RAIL_TYPE_{NORMAL,SIGNAL,...} have nearly the same name, rename RAIL_TYPE_* to RAIL_TILE_* of extra clarity
Diffstat (limited to 'road_cmd.c')
-rw-r--r-- | road_cmd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/road_cmd.c b/road_cmd.c index 1a411c705..6a7953e8a 100644 --- a/road_cmd.c +++ b/road_cmd.c @@ -323,7 +323,7 @@ int32 CmdBuildRoad(TileIndex tile, uint32 flags, uint32 p1, uint32 p2) } #undef M - if (GetRailTileType(tile) != RAIL_TYPE_NORMAL) goto do_clear; + if (GetRailTileType(tile) != RAIL_TILE_NORMAL) goto do_clear; switch (GetTrackBits(tile)) { case TRACK_BIT_X: if (pieces & ROAD_X) goto do_clear; |