diff options
Diffstat (limited to 'aircraft_gui.c')
-rw-r--r-- | aircraft_gui.c | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/aircraft_gui.c b/aircraft_gui.c index 95e9969cc..e33d61c48 100644 --- a/aircraft_gui.c +++ b/aircraft_gui.c @@ -585,24 +585,3 @@ void ShowAircraftViewWindow(const Vehicle *v) AssignWindowViewport(w, 3, 17, 0xE2, 0x54, w->window_number | (1 << 31), 0); } } - -void DrawSmallOrderListAircraft(const Vehicle *v, int x, int y) -{ - const Order *order; - int sel, i = 0; - - sel = v->cur_order_index; - - FOR_VEHICLE_ORDERS(v, order) { - if (sel == 0) DrawString(x - 6, y, STR_SMALL_RIGHT_ARROW, 16); - sel--; - - if (order->type == OT_GOTO_STATION) { - SetDParam(0, order->dest); - DrawString(x, y, STR_A036, 0); - - y += 6; - if (++i == 4) break; - } - } -} |