diff options
author | tron <tron@openttd.org> | 2007-02-02 19:09:54 +0000 |
---|---|---|
committer | tron <tron@openttd.org> | 2007-02-02 19:09:54 +0000 |
commit | 4216c10eb105e290183dc6d3f9c688c5c0304b2d (patch) | |
tree | 8d00ea5220e1df4e22abceebe79b843373d0a674 /src | |
parent | e0a46a08e97412c22eea71d77983ca2fdf695320 (diff) | |
download | openttd-4216c10eb105e290183dc6d3f9c688c5c0304b2d.tar.xz |
(svn r8539) -Fix
static
Diffstat (limited to 'src')
-rw-r--r-- | src/station_cmd.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/station_cmd.cpp b/src/station_cmd.cpp index 59598b436..0a6ff2552 100644 --- a/src/station_cmd.cpp +++ b/src/station_cmd.cpp @@ -92,7 +92,8 @@ RoadStop* GetRoadStopByTile(TileIndex tile, RoadStop::Type type) return rs; } -uint GetNumRoadStopsInStation(const Station* st, RoadStop::Type type) + +static uint GetNumRoadStopsInStation(const Station* st, RoadStop::Type type) { uint num = 0; const RoadStop *rs; |