summaryrefslogtreecommitdiff
path: root/ship_gui.c
diff options
context:
space:
mode:
authortruelight <truelight@openttd.org>2006-08-26 16:34:03 +0000
committertruelight <truelight@openttd.org>2006-08-26 16:34:03 +0000
commitdb8dfcd6e90f13ed0aafec06fc5975967afb1bb5 (patch)
tree7f558c2b1487df44a464aa980693e44cb438c592 /ship_gui.c
parentf73a2829f364b07d6f944b8b49e156b9774db39b (diff)
downloadopenttd-db8dfcd6e90f13ed0aafec06fc5975967afb1bb5.tar.xz
(svn r6142) -Codechange: added WaypointID (sorry DV, couldn't splits it anymore)
-Codechange: introduced DestinationID, which is in fact an union of several types Used in Order struct, so no longer StationID is abused for all targets. Hangars are a big exception, as they use a station-id with GOTO_DEPOT (go figure)
Diffstat (limited to 'ship_gui.c')
-rw-r--r--ship_gui.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/ship_gui.c b/ship_gui.c
index b10496446..faac96a0b 100644
--- a/ship_gui.c
+++ b/ship_gui.c
@@ -481,13 +481,13 @@ static void ShipViewWndProc(Window *w, WindowEvent *e)
} else {
switch (v->current_order.type) {
case OT_GOTO_STATION: {
- SetDParam(0, v->current_order.station);
+ SetDParam(0, v->current_order.dest.station);
SetDParam(1, v->cur_speed / 2);
str = STR_HEADING_FOR_STATION + _patches.vehicle_speed;
} break;
case OT_GOTO_DEPOT: {
- Depot *depot = GetDepot(v->current_order.station);
+ Depot *depot = GetDepot(v->current_order.dest.depot);
SetDParam(0, depot->town_index);
SetDParam(1, v->cur_speed / 2);
str = STR_HEADING_FOR_SHIP_DEPOT + _patches.vehicle_speed;
@@ -906,8 +906,8 @@ static void DrawSmallOrderList(const Vehicle *v, int x, int y)
sel--;
if (order->type == OT_GOTO_STATION) {
- if (!IsBuoy(GetStation(order->station))){
- SetDParam(0, order->station);
+ if (!IsBuoy(GetStation(order->dest.station))){
+ SetDParam(0, order->dest.station);
DrawString(x, y, STR_A036, 0);
y += 6;