From 71c4325c50ae594a5adf01cac7c9e527b239cdcb Mon Sep 17 00:00:00 2001 From: skidd13 Date: Mon, 19 Nov 2007 21:02:30 +0000 Subject: (svn r11481) -Codechange: Rename the HASBIT function to fit with the naming style --- src/industry_map.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/industry_map.h') diff --git a/src/industry_map.h b/src/industry_map.h index ea4579964..6ae571752 100644 --- a/src/industry_map.h +++ b/src/industry_map.h @@ -83,7 +83,7 @@ static inline Industry *GetIndustryByTile(TileIndex t) static inline bool IsIndustryCompleted(TileIndex t) { assert(IsTileType(t, MP_INDUSTRY)); - return HASBIT(_m[t].m1, 7); + return HasBit(_m[t].m1, 7); } IndustryType GetIndustryType(TileIndex tile); -- cgit v1.2.3-54-g00ecf