summaryrefslogtreecommitdiff
path: root/station.h
diff options
context:
space:
mode:
authortron <tron@openttd.org>2005-03-05 18:44:26 +0000
committertron <tron@openttd.org>2005-03-05 18:44:26 +0000
commit4325f13f7473daee568f54a9f262c997d81e92e5 (patch)
tree10c14a10e733a8a301d068fd99ac6bd02ac5cac4 /station.h
parent3aa99a660e31f1dae0dd75247272f8ef14fcfbbc (diff)
downloadopenttd-4325f13f7473daee568f54a9f262c997d81e92e5.tar.xz
(svn r1928) Miscellaneous cleanups (data types, whitespace, const correctness)
Diffstat (limited to 'station.h')
-rw-r--r--station.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/station.h b/station.h
index cb843f415..0402dd0b4 100644
--- a/station.h
+++ b/station.h
@@ -178,8 +178,8 @@ static inline uint16 GetRoadStopPoolSize(void)
VARDEF bool _station_sort_dirty[MAX_PLAYERS];
VARDEF bool _global_station_sort_dirty;
-void GetProductionAroundTiles(uint *produced, uint tile, int w, int h, int rad);
-void GetAcceptanceAroundTiles(uint *accepts, uint tile, int w, int h, int rad);
+void GetProductionAroundTiles(AcceptedCargo produced, TileIndex tile, int w, int h, int rad);
+void GetAcceptanceAroundTiles(AcceptedCargo accepts, TileIndex tile, int w, int h, int rad);
uint GetStationPlatforms(Station *st, uint tile);