summaryrefslogtreecommitdiff
path: root/src/dummy_land.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2007-07-26 16:51:10 +0000
committerrubidium <rubidium@openttd.org>2007-07-26 16:51:10 +0000
commit903a0a08c2ca853d8eeb3aa00caf7afa7faf53de (patch)
tree4b6a986aa841f12efff161e45aacd1a023cff71d /src/dummy_land.cpp
parenta67957866a9006e05158b9735b228bd5b93390a0 (diff)
downloadopenttd-903a0a08c2ca853d8eeb3aa00caf7afa7faf53de.tar.xz
(svn r10698) -Codechange [FS#1082]: simplify the code related to foundations. Primarily removal of (duplicated|magic) code and introduction of few helper functions to ease foundation determination. Patch by frosch.
Diffstat (limited to 'src/dummy_land.cpp')
-rw-r--r--src/dummy_land.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/dummy_land.cpp b/src/dummy_land.cpp
index 8ad015f34..03d081cce 100644
--- a/src/dummy_land.cpp
+++ b/src/dummy_land.cpp
@@ -21,9 +21,9 @@ 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)
@@ -81,5 +81,5 @@ extern const TileTypeProcs _tile_type_dummy_procs = {
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 */
};