summaryrefslogtreecommitdiff
path: root/order_gui.c
diff options
context:
space:
mode:
Diffstat (limited to 'order_gui.c')
-rw-r--r--order_gui.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/order_gui.c b/order_gui.c
index a681a7c3c..0a92caa84 100644
--- a/order_gui.c
+++ b/order_gui.c
@@ -13,6 +13,7 @@
#include "command.h"
#include "viewport.h"
#include "depot.h"
+#include "waypoint.h"
static int OrderGetSel(Window *w)
{
@@ -219,7 +220,7 @@ static Order GetOrderCmdFromTile(Vehicle *v, uint tile)
&& (_map5[tile]&0xFE)==0xC4) {
order.type = OT_GOTO_WAYPOINT;
order.flags = 0;
- order.station = GetWaypointByTile(tile);
+ order.station = GetWaypointByTile(tile)->index;
return order;
}
@@ -379,7 +380,7 @@ static void OrdersWndProc(Window *w, WindowEvent *e)
xy = GetDepot(ord->station)->xy;
break;
case OT_GOTO_WAYPOINT: /* goto waypoint order */
- xy = _waypoints[ord->station].xy;
+ xy = GetWaypoint(ord->station)->xy;
}
if (xy)