src/town_map.h
changeset 8424 4a488a90ccab
parent 8418 b49fc6be1ab9
child 8427 143b0be22af1
--- a/src/town_map.h	Mon Nov 19 20:40:14 2007 +0000
+++ b/src/town_map.h	Mon Nov 19 21:02:30 2007 +0000
@@ -77,7 +77,7 @@
  */
 static inline bool LiftHasDestination(TileIndex t)
 {
-	return HASBIT(_me[t].m7, 0);
+	return HasBit(_me[t].m7, 0);
 }
 
 /**
@@ -166,7 +166,7 @@
 static inline bool IsHouseCompleted(TileIndex t)
 {
 	assert(IsTileType(t, MP_HOUSE));
-	return HASBIT(_m[t].m3, 7);
+	return HasBit(_m[t].m3, 7);
 }
 
 /**