(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.
This commit is contained in:
Darkvater
2006-10-28 23:47:00 +00:00
parent 1d0ebb9cc3
commit fce44a1ce7
5 changed files with 5 additions and 5 deletions

View File

@@ -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));
}