summaryrefslogtreecommitdiff
path: root/misc_gui.c
diff options
context:
space:
mode:
authorDarkvater <darkvater@openttd.org>2006-10-28 23:47:00 +0000
committerDarkvater <darkvater@openttd.org>2006-10-28 23:47:00 +0000
commitfce44a1ce7ebb461ddff516a2a508fb91684a49e (patch)
treefdaf34aa21fccdd3d6252619b55115d722ab5eaa /misc_gui.c
parent1d0ebb9cc3198e51ace4e361572da00700c9d564 (diff)
downloadopenttd-fce44a1ce7ebb461ddff516a2a508fb91684a49e.tar.xz
(svn r7000) -Fix: Incorrect use of e->we.click when the event is a 'place'. This didn't cause any
bugs so far because the 'click' element was at the same position in the union for both events.
Diffstat (limited to 'misc_gui.c')
-rw-r--r--misc_gui.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/misc_gui.c b/misc_gui.c
index 168255c15..583f5d571 100644
--- a/misc_gui.c
+++ b/misc_gui.c
@@ -374,7 +374,7 @@ static void BuildTreesWndProc(Window *w, WindowEvent *e)
return;
case WE_PLACE_MOUSEUP:
- if (e->we.click.pt.x != -1) {
+ if (e->we.place.pt.x != -1) {
DoCommandP(e->we.place.tile, _tree_to_plant, e->we.place.starttile, NULL,
CMD_PLANT_TREE | CMD_AUTO | CMD_MSG(STR_2805_CAN_T_PLANT_TREE_HERE));
}