summaryrefslogtreecommitdiff
path: root/aircraft_gui.c
diff options
context:
space:
mode:
authortron <tron@openttd.org>2006-09-03 08:25:27 +0000
committertron <tron@openttd.org>2006-09-03 08:25:27 +0000
commitd5e5a78cf414eb143741f6fc15d8245f5197b3c9 (patch)
tree79ebec494a87cd0b8e16e577740868f5bf90a7d2 /aircraft_gui.c
parent5a86b502c2f553096f88d7f84241e0f3e581fcb2 (diff)
downloadopenttd-d5e5a78cf414eb143741f6fc15d8245f5197b3c9.tar.xz
(svn r6353) -Codechange: Make DestinationID a typedef of uin16, which is as large as any type of destinataion (StationID, DepotID, WaypointID) it can hold
DestinationID being a union of these types is just hassle without benefit and cannot be handled correctly everywhere because of local lack of information
Diffstat (limited to 'aircraft_gui.c')
-rw-r--r--aircraft_gui.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/aircraft_gui.c b/aircraft_gui.c
index 72b20bcf4..377b7a207 100644
--- a/aircraft_gui.c
+++ b/aircraft_gui.c
@@ -548,14 +548,14 @@ static void AircraftViewWndProc(Window *w, WindowEvent *e)
} else {
switch (v->current_order.type) {
case OT_GOTO_STATION: {
- SetDParam(0, v->current_order.dest.station);
+ SetDParam(0, v->current_order.dest);
SetDParam(1, v->cur_speed * 128 / 10);
str = STR_HEADING_FOR_STATION + _patches.vehicle_speed;
} break;
case OT_GOTO_DEPOT: {
/* Aircrafts always go to a station, even if you say depot */
- SetDParam(0, v->current_order.dest.station);
+ SetDParam(0, v->current_order.dest);
SetDParam(1, v->cur_speed * 128 / 10);
if (HASBIT(v->current_order.flags, OFB_HALT_IN_DEPOT)) {
str = STR_HEADING_FOR_HANGAR + _patches.vehicle_speed;
@@ -965,7 +965,7 @@ void DrawSmallOrderListAircraft(const Vehicle *v, int x, int y)
sel--;
if (order->type == OT_GOTO_STATION) {
- SetDParam(0, order->dest.station);
+ SetDParam(0, order->dest);
DrawString(x, y, STR_A036, 0);
y += 6;