(svn r11481) -Codechange: Rename the HASBIT function to fit with the naming style
This commit is contained in:
@@ -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);
|
||||
|
Reference in New Issue
Block a user