summaryrefslogtreecommitdiff
path: root/src/newgrf_station.h
diff options
context:
space:
mode:
authorterkhen <terkhen@openttd.org>2011-06-12 20:34:03 +0000
committerterkhen <terkhen@openttd.org>2011-06-12 20:34:03 +0000
commitc98a8308cc1d0e820a96b618bdd2045580f1e173 (patch)
tree09f8872a2e0a37b2923953dc17438074c72606bf /src/newgrf_station.h
parente127fca384892a22a393fe68c88d9291c5c1d18c (diff)
downloadopenttd-c98a8308cc1d0e820a96b618bdd2045580f1e173.tar.xz
(svn r22558) -Codechange: Remove constness from BaseStation in ResolverObject.
Diffstat (limited to 'src/newgrf_station.h')
-rw-r--r--src/newgrf_station.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/newgrf_station.h b/src/newgrf_station.h
index e1da520c9..fe924d51d 100644
--- a/src/newgrf_station.h
+++ b/src/newgrf_station.h
@@ -111,7 +111,7 @@ const StationSpec *GetStationSpec(TileIndex t);
/* Evaluate a tile's position within a station, and return the result a bitstuffed format. */
uint32 GetPlatformInfo(Axis axis, byte tile, int platforms, int length, int x, int y, bool centred);
-SpriteID GetCustomStationRelocation(const StationSpec *statspec, const BaseStation *st, TileIndex tile, uint32 var10 = 0);
+SpriteID GetCustomStationRelocation(const StationSpec *statspec, BaseStation *st, TileIndex tile, uint32 var10 = 0);
SpriteID GetCustomStationFoundationRelocation(const StationSpec *statspec, const BaseStation *st, TileIndex tile, uint layout, uint edge_info);
uint16 GetStationCallback(CallbackID callback, uint32 param1, uint32 param2, const StationSpec *statspec, BaseStation *st, TileIndex tile);