From 384503e7d37f4b68c1480f6e6ca81adf84ef137d Mon Sep 17 00:00:00 2001 From: rubidium Date: Thu, 27 Dec 2007 13:35:39 +0000 Subject: (svn r11706) -Codechange: split vehicle.h and remove another bunch of useless includes. --- src/roadveh_gui.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/roadveh_gui.cpp') diff --git a/src/roadveh_gui.cpp b/src/roadveh_gui.cpp index 014684d72..16b5d062d 100644 --- a/src/roadveh_gui.cpp +++ b/src/roadveh_gui.cpp @@ -10,13 +10,13 @@ #include "table/strings.h" #include "gui.h" #include "window_gui.h" -#include "vehicle.h" #include "viewport.h" #include "command_func.h" #include "depot.h" #include "vehicle_gui.h" #include "newgrf_engine.h" #include "strings_func.h" +#include "vehicle_func.h" void DrawRoadVehDetails(const Vehicle *v, int x, int y) @@ -99,7 +99,7 @@ static inline int RoadVehLengthToPixels(int length) return (length * 28) / 8; } -void DrawRoadVehImage(const Vehicle *v, int x, int y, int count, VehicleID selection) +void DrawRoadVehImage(const Vehicle *v, int x, int y, VehicleID selection, int count) { /* Road vehicle lengths are measured in eighths of the standard length, so * count is the number of standard vehicles that should be drawn. If it is -- cgit v1.2.3-54-g00ecf