summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/viewport.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/viewport.cpp b/src/viewport.cpp
index 6beb60836..7bcd83d3e 100644
--- a/src/viewport.cpp
+++ b/src/viewport.cpp
@@ -1887,8 +1887,8 @@ static void PlaceObject()
if (pt.x == -1) return;
if ((_thd.place_mode & HT_DRAG_MASK) == HT_POINT) {
- pt.x += 8;
- pt.y += 8;
+ pt.x += TILE_SIZE / 2;
+ pt.y += TILE_SIZE / 2;
}
_tile_fract_coords.x = pt.x & TILE_UNIT_MASK;