diff options
author | belugas <belugas@openttd.org> | 2006-03-30 19:16:44 +0000 |
---|---|---|
committer | belugas <belugas@openttd.org> | 2006-03-30 19:16:44 +0000 |
commit | 80570009dd802e7403983c7e28670e7debd4c57b (patch) | |
tree | 0f080a9a7fe135f94c938d4a6178f9175904cc93 /road_cmd.c | |
parent | 756212a71e6910919ef854c0f5d9bb35a1e14001 (diff) | |
download | openttd-80570009dd802e7403983c7e28670e7debd4c57b.tar.xz |
(svn r4181) CodeChange : Replaced [G/S]etMapExtraBits by [G/S]etTropicZone. Although it was an accessor, nor his usage nor the values were clear.
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 8d40381c5..7affafbb9 100644 --- a/road_cmd.c +++ b/road_cmd.c @@ -920,7 +920,7 @@ static void TileLoop_Road(TileIndex tile) break; case LT_DESERT: - if (GetMapExtraBits(tile) == 1 && !(_m[tile].m4 & 0x80)) { + if (GetTropicZone(tile) == TROPICZONE_DESERT && !(_m[tile].m4 & 0x80)) { _m[tile].m4 |= 0x80; MarkTileDirtyByTile(tile); } |