From 3973b1e7cb5d244374e517879ec9f9017c95446f Mon Sep 17 00:00:00 2001 From: frosch Date: Mon, 13 Jul 2009 19:30:37 +0000 Subject: (svn r16817) -Codechange: Scroll depots horizontally in pixels instead of 1/8 vehicle length. --- src/vehicle_gui.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/vehicle_gui.cpp') diff --git a/src/vehicle_gui.cpp b/src/vehicle_gui.cpp index 407b563cf..a4fcf8811 100644 --- a/src/vehicle_gui.cpp +++ b/src/vehicle_gui.cpp @@ -811,7 +811,7 @@ static void DrawSmallOrderList(const Vehicle *v, int left, int right, int y) static void DrawVehicleImage(const Vehicle *v, int x, int y, VehicleID selection, int max_width, int skip) { switch (v->type) { - case VEH_TRAIN: DrawTrainImage(v, x, y, selection, max_width, skip); break; + case VEH_TRAIN: DrawTrainImage(Train::From(v), x, y, selection, max_width, skip); break; case VEH_ROAD: DrawRoadVehImage(v, x, y, selection, max_width); break; case VEH_SHIP: DrawShipImage(v, x, y, selection); break; case VEH_AIRCRAFT: DrawAircraftImage(v, x, y, selection); break; -- cgit v1.2.3-54-g00ecf