diff --git a/train_gui.c b/train_gui.c --- a/train_gui.c +++ b/train_gui.c @@ -968,12 +968,12 @@ static void TrainViewWndProc(Window *w, switch (v->current_order.type) { case OT_GOTO_STATION: { str = STR_HEADING_FOR_STATION + _patches.vehicle_speed; - SetDParam(0, v->current_order.station); + SetDParam(0, v->current_order.dest.station); SetDParam(1, v->u.rail.last_speed); } break; case OT_GOTO_DEPOT: { - Depot *dep = GetDepot(v->current_order.station); + Depot *dep = GetDepot(v->current_order.dest.depot); SetDParam(0, dep->town_index); str = STR_HEADING_FOR_TRAIN_DEPOT + _patches.vehicle_speed; SetDParam(1, v->u.rail.last_speed); @@ -985,7 +985,7 @@ static void TrainViewWndProc(Window *w, break; case OT_GOTO_WAYPOINT: { - SetDParam(0, v->current_order.station); + SetDParam(0, v->current_order.dest.waypoint); str = STR_HEADING_FOR_WAYPOINT + _patches.vehicle_speed; SetDParam(1, v->u.rail.last_speed); break;