mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-02-03 12:59:33 +00:00
(svn r14171) -Codechange: Make the test for HQ a bit lighter.
The presence of a HQ is only dictated by the 7th bit been set. The rest of the data is related to the size and the type.
This commit is contained in:
parent
6a742cef5f
commit
bc7a87613f
@ -83,7 +83,7 @@ static inline bool IsOwnedLandTile(TileIndex t)
|
||||
static inline bool IsCompanyHQ(TileIndex t)
|
||||
{
|
||||
assert(IsTileType(t, MP_UNMOVABLE));
|
||||
return IsInsideMM(GetUnmovableType(t), UNMOVABLE_HQ_NORTH, UNMOVABLE_HQ_END);
|
||||
return HasBit(_m[t].m5, 7);
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user