Changed: rollback fixes of Strict aliasing warnings

--HG--
branch : item_group
hg/compatibility-develop
Nuno Gonçalves 8 years ago
parent de949a60a9
commit ae6b3e38a0

@ -424,13 +424,17 @@ namespace INVENTORIES
private:
struct COneProp
{
union
{
TItemPropId ItemPropId;
uint32 ItemPropIdUint32;
};
sint32 ItemPropValue;
void serial( NLMISC::CBitMemStream& bms )
{
bms.serial( (uint32&)ItemPropId, NbBitsForItemPropId );
bms.serial((uint32&)ItemPropIdUint32, NbBitsForItemPropId);
bms.serial((uint32&)ItemPropValue, CItemSlot::DataBitSize[ItemPropId]);
}
};

Loading…
Cancel
Save