tile.c
changeset 3379 ea8aa9e71328
parent 3279 7c642c5c501c
child 3422 12cdb13ddb56
--- a/tile.c	Thu Mar 30 15:47:18 2006 +0000
+++ b/tile.c	Thu Mar 30 19:16:44 2006 +0000
@@ -3,18 +3,6 @@
 #include "stdafx.h"
 #include "tile.h"
 
-void SetMapExtraBits(TileIndex tile, byte bits)
-{
-	assert(tile < MapSize());
-	SB(_m[tile].extra, 0, 2, bits & 3);
-}
-
-uint GetMapExtraBits(TileIndex tile)
-{
-	assert(tile < MapSize());
-	return GB(_m[tile].extra, 0, 2);
-}
-
 /** Converts the heights of 4 corners into a tileh, and returns the minimum height of the tile
   * @param n,w,e,s the four corners
   * @param h uint pointer to write the height to