File diff r7334:9402325cee09 → r7335:93bf5f4b6ce4
src/dummy_land.cpp
Show inline comments
 
@@ -18,15 +18,15 @@ static void DrawTile_Dummy(TileInfo *ti)
 

	
 
static uint GetSlopeZ_Dummy(TileIndex tile, uint x, uint y)
 
{
 
	return 0;
 
}
 

	
 
static Slope GetSlopeTileh_Dummy(TileIndex tile, Slope tileh)
 
static Foundation GetFoundation_Dummy(TileIndex tile, Slope tileh)
 
{
 
	return SLOPE_FLAT;
 
	return FOUNDATION_NONE;
 
}
 

	
 
static CommandCost ClearTile_Dummy(TileIndex tile, byte flags)
 
{
 
	return_cmd_error(STR_0001_OFF_EDGE_OF_MAP);
 
}
 
@@ -78,8 +78,8 @@ extern const TileTypeProcs _tile_type_du
 
	ClickTile_Dummy,          /* click_tile_proc */
 
	AnimateTile_Dummy,        /* animate_tile_proc */
 
	TileLoop_Dummy,           /* tile_loop_clear */
 
	ChangeTileOwner_Dummy,    /* change_tile_owner_clear */
 
	NULL,                     /* get_produced_cargo_proc */
 
	NULL,                     /* vehicle_enter_tile_proc */
 
	GetSlopeTileh_Dummy,      /* get_slope_tileh_proc */
 
	GetFoundation_Dummy,      /* get_foundation_proc */
 
};