summaryrefslogtreecommitdiff
path: root/landscape.c
diff options
context:
space:
mode:
authortron <tron@openttd.org>2005-01-29 13:33:48 +0000
committertron <tron@openttd.org>2005-01-29 13:33:48 +0000
commitf08d102ac203b6072b5d1381d0a2c435dace731a (patch)
tree84df3cedf71cb403fa6a6e80106442f0401bbd43 /landscape.c
parenta2de96abc09e4f64bdc860804275b033f721c153 (diff)
downloadopenttd-f08d102ac203b6072b5d1381d0a2c435dace731a.tar.xz
(svn r1715) Move [GS]etMapExtraBits to tile.[ch]
Diffstat (limited to 'landscape.c')
-rw-r--r--landscape.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/landscape.c b/landscape.c
index 4e14682fd..993badea8 100644
--- a/landscape.c
+++ b/landscape.c
@@ -430,17 +430,6 @@ void CDECL ModifyTile(uint tile, uint flags, ...)
MarkTileDirtyByTile(tile);
}
-void SetMapExtraBits(uint tile, byte bits)
-{
- _map_extra_bits[tile >> 2] &= ~(3 << ((tile&3)*2));
- _map_extra_bits[tile >> 2] |= (bits&3) << ((tile&3)*2);
-}
-
-uint GetMapExtraBits(uint tile)
-{
- assert(tile < MapSize());
- return (_map_extra_bits[tile >> 2] >> (tile & 3) * 2) & 3;
-}
#define TILELOOP_BITS 4
#define TILELOOP_SIZE (1 << TILELOOP_BITS)