diff options
author | smatz <smatz@openttd.org> | 2009-01-14 13:40:11 +0000 |
---|---|---|
committer | smatz <smatz@openttd.org> | 2009-01-14 13:40:11 +0000 |
commit | 514cf26325452d187799aad19b8615b79fd7dd97 (patch) | |
tree | d3735cbaa0fb293038b4759ba4d9245c51acf348 /src/terraform_gui.cpp | |
parent | 9d6a7127f68c5ef3bcae29a52dfdc951986f4b60 (diff) | |
download | openttd-514cf26325452d187799aad19b8615b79fd7dd97.tar.xz |
(svn r15081) -Fix (r15080): of course it's about southern border, not northern...
Diffstat (limited to 'src/terraform_gui.cpp')
-rw-r--r-- | src/terraform_gui.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/terraform_gui.cpp b/src/terraform_gui.cpp index dd44a0e44..b0aa2e11a 100644 --- a/src/terraform_gui.cpp +++ b/src/terraform_gui.cpp @@ -114,7 +114,7 @@ static void GenerateRockyArea(TileIndex end, TileIndex start) bool GUIPlaceProcDragXY(ViewportDragDropSelectionProcess proc, TileIndex start_tile, TileIndex end_tile) { /* When end_tile is MP_VOID, the DoCommandP checks will deny this command without any - * user-visible reason. This happens when terraforming at the northern border. */ + * user-visible reason. This happens when terraforming at the southern border. */ if (TileX(end_tile) == MapMaxX()) end_tile += TileDiffXY(-1, 0); if (TileY(end_tile) == MapMaxY()) end_tile += TileDiffXY(0, -1); |