File diff r15761:680dbdd50e09 → r15762:7fbf9fe78040
src/tile_map.h
Show inline comments
 
@@ -142,7 +142,7 @@ static inline Owner GetTileOwner(TileInd
 
	assert(!IsTileType(tile, MP_HOUSE));
 
	assert(!IsTileType(tile, MP_INDUSTRY));
 

	
 
	return (Owner)_m[tile].m1;
 
	return (Owner)GB(_m[tile].m1, 0, 5);
 
}
 

	
 
/**
 
@@ -162,7 +162,7 @@ static inline void SetTileOwner(TileInde
 
	assert(!IsTileType(tile, MP_HOUSE));
 
	assert(!IsTileType(tile, MP_INDUSTRY));
 

	
 
	_m[tile].m1 = owner;
 
	SB(_m[tile].m1, 0, 5, owner);
 
}
 

	
 
/**