forked from mirror/OpenTTD
(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
This commit is contained in:
@@ -334,13 +334,13 @@ static void RoadVehViewWndProc(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 / 2);
|
||||
str = STR_HEADING_FOR_STATION + _patches.vehicle_speed;
|
||||
} break;
|
||||
|
||||
case OT_GOTO_DEPOT: {
|
||||
Depot *depot = GetDepot(v->current_order.dest.depot);
|
||||
Depot *depot = GetDepot(v->current_order.dest);
|
||||
SetDParam(0, depot->town_index);
|
||||
SetDParam(1, v->cur_speed / 2);
|
||||
if (HASBIT(v->current_order.flags, OFB_HALT_IN_DEPOT)) {
|
||||
|
Reference in New Issue
Block a user