summaryrefslogtreecommitdiff
path: root/src/newgrf_house.h
diff options
context:
space:
mode:
authorterkhen <terkhen@openttd.org>2011-06-12 20:35:37 +0000
committerterkhen <terkhen@openttd.org>2011-06-12 20:35:37 +0000
commit76cd19f84608c134f642bca4e303f4b7370c7017 (patch)
tree0587313cfa9e64702da6b2bd16c2f89a86478942 /src/newgrf_house.h
parente8df5563dbf171aa5953a31d71cf30d42bbf4162 (diff)
downloadopenttd-76cd19f84608c134f642bca4e303f4b7370c7017.tar.xz
(svn r22560) -Codechange: Remove constness from House in ResolverObject.
Diffstat (limited to 'src/newgrf_house.h')
-rw-r--r--src/newgrf_house.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/newgrf_house.h b/src/newgrf_house.h
index 1b24a6747..62748ec82 100644
--- a/src/newgrf_house.h
+++ b/src/newgrf_house.h
@@ -44,7 +44,7 @@ void DrawNewHouseTile(TileInfo *ti, HouseID house_id);
void AnimateNewHouseTile(TileIndex tile);
void AnimateNewHouseConstruction(TileIndex tile);
-uint16 GetHouseCallback(CallbackID callback, uint32 param1, uint32 param2, HouseID house_id, const Town *town, TileIndex tile, bool not_yet_constructed = false, uint8 initial_random_bits = 0);
+uint16 GetHouseCallback(CallbackID callback, uint32 param1, uint32 param2, HouseID house_id, Town *town, TileIndex tile, bool not_yet_constructed = false, uint8 initial_random_bits = 0);
bool CanDeleteHouse(TileIndex tile);