File diff r12233:9d0861714103 → r12234:fd1a494e7620
src/landscape.cpp
Show inline comments
 
@@ -497,18 +497,12 @@ TrackStatus GetTileTrackStatus(TileIndex
 
 */
 
void ChangeTileOwner(TileIndex tile, Owner old_owner, Owner new_owner)
 
{
 
	_tile_type_procs[GetTileType(tile)]->change_tile_owner_proc(tile, old_owner, new_owner);
 
}
 

	
 
void GetAcceptedCargo(TileIndex tile, AcceptedCargo ac)
 
{
 
	memset(ac, 0, sizeof(AcceptedCargo));
 
	_tile_type_procs[GetTileType(tile)]->get_accepted_cargo_proc(tile, ac);
 
}
 

	
 
void AnimateTile(TileIndex tile)
 
{
 
	_tile_type_procs[GetTileType(tile)]->animate_tile_proc(tile);
 
}
 

	
 
bool ClickTile(TileIndex tile)