mirror of https://github.com/OpenTTD/OpenTTD
(svn r1609) -Codechange: converted the last order-loop with FOR_VEHICLE_ORDERS
parent
a11eddd04b
commit
80131e1e4a
|
@ -868,9 +868,8 @@ static void DrawSmallOrderList(Vehicle *v, int x, int y) {
|
||||||
int sel, i = 0;
|
int sel, i = 0;
|
||||||
|
|
||||||
sel = v->cur_order_index;
|
sel = v->cur_order_index;
|
||||||
order = v->orders;
|
|
||||||
|
|
||||||
while (order != NULL) {
|
FOR_VEHICLE_ORDERS(v, order) {
|
||||||
if (sel == 0) {
|
if (sel == 0) {
|
||||||
_stringwidth_base = 0xE0;
|
_stringwidth_base = 0xE0;
|
||||||
DoDrawString( "\xAF", x-6, y, 16);
|
DoDrawString( "\xAF", x-6, y, 16);
|
||||||
|
@ -888,8 +887,6 @@ static void DrawSmallOrderList(Vehicle *v, int x, int y) {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
order = order->next;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue