diff options
author | peter1138 <peter1138@openttd.org> | 2007-05-19 09:13:08 +0000 |
---|---|---|
committer | peter1138 <peter1138@openttd.org> | 2007-05-19 09:13:08 +0000 |
commit | 816d31f0aac2612ab1b076c5a99480b7534242ae (patch) | |
tree | e18d857bb3a440f27ad7e35b4e2aa0337ecb8875 /src/newgrf_house.h | |
parent | 517891134538f3780c55e0939fa1be0f1971c0ea (diff) | |
download | openttd-816d31f0aac2612ab1b076c5a99480b7534242ae.tar.xz |
(svn r9873) -Codechange: Add missing second callback parameter for houses
Diffstat (limited to 'src/newgrf_house.h')
-rw-r--r-- | src/newgrf_house.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/newgrf_house.h b/src/newgrf_house.h index bdd21b907..6ca6b3ebd 100644 --- a/src/newgrf_house.h +++ b/src/newgrf_house.h @@ -54,7 +54,7 @@ void DrawNewHouseTile(TileInfo *ti, HouseID house_id); void AnimateNewHouseTile(TileIndex tile); void ChangeHouseAnimationFrame(TileIndex tile, uint16 callback_result); -uint16 GetHouseCallback(uint16 callback, uint32 param1, HouseID house_id, Town *town, TileIndex tile); +uint16 GetHouseCallback(uint16 callback, uint32 param1, uint32 param2, HouseID house_id, Town *town, TileIndex tile); bool CanDeleteHouse(TileIndex tile); |