summaryrefslogtreecommitdiff
path: root/tree_cmd.c
diff options
context:
space:
mode:
authorDarkvater <Darkvater@openttd.org>2005-07-18 00:17:19 +0000
committerDarkvater <Darkvater@openttd.org>2005-07-18 00:17:19 +0000
commitc966fc23fb7a243de064556b35ea2b5e52605ab6 (patch)
treeaa237afe9b11dc75c84123f8c90cd284576db64b /tree_cmd.c
parentdc5ee387380ec8f4e21eddbc66ce558a1a7c6b98 (diff)
downloadopenttd-c966fc23fb7a243de064556b35ea2b5e52605ab6.tar.xz
(svn r2628) - Fix: Planting trees does not result in a MapSize() assertion anymore; introduced in r2598
Diffstat (limited to 'tree_cmd.c')
-rw-r--r--tree_cmd.c14
1 files changed, 6 insertions, 8 deletions
diff --git a/tree_cmd.c b/tree_cmd.c
index bd83d9297..14851c6f8 100644
--- a/tree_cmd.c
+++ b/tree_cmd.c
@@ -132,10 +132,7 @@ void GenerateTrees(void)
int32 CmdPlantTree(int ex, int ey, uint32 flags, uint32 p1, uint32 p2)
{
int32 cost;
- int sx;
- int sy;
- int x;
- int y;
+ int sx, sy, x, y;
if (p2 > MapSize()) return CMD_ERROR;
/* Check the tree type. It can be random or some valid value within the current climate */
@@ -144,15 +141,16 @@ int32 CmdPlantTree(int ex, int ey, uint32 flags, uint32 p1, uint32 p2)
SET_EXPENSES_TYPE(EXPENSES_OTHER);
// make sure sx,sy are smaller than ex,ey
- sx = TileX(p2) * 16;
- sy = TileY(p2) * 16;
+ sx = TileX(p2);
+ sy = TileY(p2);
+ ex /= 16; ey /= 16;
if (ex < sx) intswap(ex, sx);
if (ey < sy) intswap(ey, sy);
cost = 0; // total cost
- for (x = sx; x <= ex; x += 16) {
- for (y = sy; y <= ey; y += 16) {
+ for (x = sx; x <= ex; x++) {
+ for (y = sy; y <= ey; y++) {
TileIndex tile = TileXY(x, y);
if (!EnsureNoVehicle(tile)) continue;