summaryrefslogtreecommitdiff
path: root/src/terraform_gui.cpp
diff options
context:
space:
mode:
authorfrosch <frosch@openttd.org>2008-01-30 17:22:06 +0000
committerfrosch <frosch@openttd.org>2008-01-30 17:22:06 +0000
commit46589fa8270516b476cbafd3b1df490ec4106dce (patch)
tree834594acaf672bdbcf810b84c3e44cbd20b7e2fe /src/terraform_gui.cpp
parent1cdee354b490d4c1dbbfe05f51322b2b143cb392 (diff)
downloadopenttd-46589fa8270516b476cbafd3b1df490ec4106dce.tar.xz
(svn r12020) -Documentation: Correct description of TropicZone.
Diffstat (limited to 'src/terraform_gui.cpp')
-rw-r--r--src/terraform_gui.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/terraform_gui.cpp b/src/terraform_gui.cpp
index b0d8cfee5..858aa85bc 100644
--- a/src/terraform_gui.cpp
+++ b/src/terraform_gui.cpp
@@ -56,7 +56,7 @@ static void GenerateDesertArea(TileIndex end, TileIndex start)
_generating_world = true;
BEGIN_TILE_LOOP(tile, size_x, size_y, TileXY(sx, sy)) {
if (GetTileType(tile) != MP_WATER) {
- SetTropicZone(tile, (_ctrl_pressed) ? TROPICZONE_INVALID : TROPICZONE_DESERT);
+ SetTropicZone(tile, (_ctrl_pressed) ? TROPICZONE_NORMAL : TROPICZONE_DESERT);
DoCommandP(tile, 0, 0, NULL, CMD_LANDSCAPE_CLEAR);
MarkTileDirtyByTile(tile);
}