From 06d3669bb54143c588bd7b3abddbbb79582c94ee Mon Sep 17 00:00:00 2001 From: belugas Date: Thu, 22 Mar 2007 03:42:43 +0000 Subject: (svn r9400) -Codechange: Use some more representative enum names for landscape types. --- src/rail_cmd.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/rail_cmd.cpp') diff --git a/src/rail_cmd.cpp b/src/rail_cmd.cpp index 6a3f0a043..ed6f39649 100644 --- a/src/rail_cmd.cpp +++ b/src/rail_cmd.cpp @@ -1294,7 +1294,7 @@ static void DrawTile_Track(TileInfo *ti) // adjust ground tile for desert // don't adjust for snow, because snow in depots looks weird - if (IsSnowRailGround(ti->tile) && _opt.landscape == LT_DESERT) { + if (IsSnowRailGround(ti->tile) && _opt.landscape == LT_TROPIC) { if (image != SPR_FLAT_GRASS_TILE) { image += rti->snow_offset; // tile with tracks } else { @@ -1738,14 +1738,14 @@ static void TileLoop_Track(TileIndex tile) RailGroundType new_ground; switch (_opt.landscape) { - case LT_HILLY: + case LT_ARCTIC: if (GetTileZ(tile) > GetSnowLine()) { new_ground = RAIL_GROUND_ICE_DESERT; goto set_ground; } break; - case LT_DESERT: + case LT_TROPIC: if (GetTropicZone(tile) == TROPICZONE_DESERT) { new_ground = RAIL_GROUND_ICE_DESERT; goto set_ground; -- cgit v1.2.3-54-g00ecf