From 5dcd689f5662d93ade95e3fd04332b8456605add Mon Sep 17 00:00:00 2001 From: peter1138 Date: Mon, 21 Apr 2008 20:50:58 +0000 Subject: (svn r12824) -Codechange: Standardise routines for drawing vehicle images, using correct types and less duplication. --- src/roadveh.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/roadveh.h') diff --git a/src/roadveh.h b/src/roadveh.h index 9159a8784..a89b73197 100644 --- a/src/roadveh.h +++ b/src/roadveh.h @@ -73,7 +73,7 @@ struct RoadVehicle : public Vehicle { ExpensesType GetExpenseType(bool income) const { return income ? EXPENSES_ROADVEH_INC : EXPENSES_ROADVEH_RUN; } WindowClass GetVehicleListWindowClass() const { return WC_ROADVEH_LIST; } bool IsPrimaryVehicle() const { return IsRoadVehFront(this); } - int GetImage(Direction direction) const; + SpriteID GetImage(Direction direction) const; int GetDisplaySpeed() const { return this->cur_speed * 10 / 32; } int GetDisplayMaxSpeed() const { return this->max_speed * 10 / 32; } Money GetRunningCost() const { return RoadVehInfo(this->engine_type)->running_cost * GetPriceByIndex(RoadVehInfo(this->engine_type)->running_cost_class); } -- cgit v1.2.3-54-g00ecf