summaryrefslogtreecommitdiff
path: root/src/roadveh_cmd.cpp
diff options
context:
space:
mode:
authorfrosch <frosch@openttd.org>2009-10-20 19:55:09 +0000
committerfrosch <frosch@openttd.org>2009-10-20 19:55:09 +0000
commit8df61c0fc0b36ea07391171b8a14908fdea0dd1a (patch)
treeeaa430072aff8d9963a10e28e4b6d1179c3be5c6 /src/roadveh_cmd.cpp
parent30ebe379c768a2d2bd060d6bf4fb82d7f609df3f (diff)
downloadopenttd-8df61c0fc0b36ea07391171b8a14908fdea0dd1a.tar.xz
(svn r17826) -Codechange: GetRoadVehLength() is only used in one file, make it static.
Diffstat (limited to 'src/roadveh_cmd.cpp')
-rw-r--r--src/roadveh_cmd.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/roadveh_cmd.cpp b/src/roadveh_cmd.cpp
index dc2683cb8..1a63c06e4 100644
--- a/src/roadveh_cmd.cpp
+++ b/src/roadveh_cmd.cpp
@@ -144,9 +144,9 @@ void DrawRoadVehEngine(int x, int y, EngineID engine, SpriteID pal)
DrawSprite(GetRoadVehIcon(engine), pal, x, y);
}
-byte GetRoadVehLength(const RoadVehicle *v)
+static uint GetRoadVehLength(const RoadVehicle *v)
{
- byte length = 8;
+ uint length = 8;
uint16 veh_len = GetVehicleCallback(CBID_VEHICLE_LENGTH, 0, 0, v->engine_type, v);
if (veh_len != CALLBACK_FAILED) {