diff options
Diffstat (limited to 'src/dummy_land.cpp')
-rw-r--r-- | src/dummy_land.cpp | 17 |
1 files changed, 3 insertions, 14 deletions
diff --git a/src/dummy_land.cpp b/src/dummy_land.cpp index 837762da4..8bc5e888e 100644 --- a/src/dummy_land.cpp +++ b/src/dummy_land.cpp @@ -39,22 +39,11 @@ static void GetTileDesc_Dummy(TileIndex tile, TileDesc *td) td->owner[0] = OWNER_NONE; } -static void AnimateTile_Dummy(TileIndex tile) -{ - /* not used */ -} - static void TileLoop_Dummy(TileIndex tile) { /* not used */ } -static bool ClickTile_Dummy(TileIndex tile) -{ - /* not used */ - return false; -} - static void ChangeTileOwner_Dummy(TileIndex tile, Owner old_owner, Owner new_owner) { /* not used */ @@ -74,11 +63,11 @@ extern const TileTypeProcs _tile_type_dummy_procs = { DrawTile_Dummy, // draw_tile_proc GetSlopeZ_Dummy, // get_slope_z_proc ClearTile_Dummy, // clear_tile_proc - NULL, // get_accepted_cargo_proc + NULL, // add_accepted_cargo_proc GetTileDesc_Dummy, // get_tile_desc_proc GetTileTrackStatus_Dummy, // get_tile_track_status_proc - ClickTile_Dummy, // click_tile_proc - AnimateTile_Dummy, // animate_tile_proc + NULL, // click_tile_proc + NULL, // animate_tile_proc TileLoop_Dummy, // tile_loop_clear ChangeTileOwner_Dummy, // change_tile_owner_clear NULL, // get_produced_cargo_proc |