summaryrefslogtreecommitdiff
path: root/tree_cmd.c
diff options
context:
space:
mode:
Diffstat (limited to 'tree_cmd.c')
-rw-r--r--tree_cmd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tree_cmd.c b/tree_cmd.c
index b7316312c..52854c9c6 100644
--- a/tree_cmd.c
+++ b/tree_cmd.c
@@ -155,8 +155,8 @@ 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 = GET_TILE_X(p2)*16;
- sy = GET_TILE_Y(p2)*16;
+ sx = TileX(p2) * 16;
+ sy = TileY(p2) * 16;
if (ex < sx) intswap(ex, sx);
if (ey < sy) intswap(ey, sy);