(svn r26457) -Codechange: Remove unused parameter from SetIndustryCompleted

This commit is contained in:
planetmaker
2014-04-12 11:43:04 +00:00
parent 74f666d741
commit 5c3891fe3c
2 changed files with 5 additions and 6 deletions

View File

@@ -85,13 +85,12 @@ IndustryType GetIndustryType(TileIndex tile);
/**
* Set if the industry that owns the tile as under construction or not
* @param tile the tile to query
* @param isCompleted whether it is completed or not
* @pre IsTileType(tile, MP_INDUSTRY)
*/
static inline void SetIndustryCompleted(TileIndex tile, bool isCompleted)
static inline void SetIndustryCompleted(TileIndex tile)
{
assert(IsTileType(tile, MP_INDUSTRY));
SB(_m[tile].m1, 7, 1, isCompleted ? 1 :0);
SB(_m[tile].m1, 7, 1, 1);
}
/**