forked from teamnwah/openmw-tes3coop
[General] Fix type
This commit is contained in:
parent
1841562553
commit
a546d99000
1 changed files with 2 additions and 2 deletions
|
@ -13,9 +13,9 @@ void PacketPlayerAttribute::Packet(RakNet::BitStream *bs, bool send)
|
||||||
{
|
{
|
||||||
PlayerPacket::Packet(bs, send);
|
PlayerPacket::Packet(bs, send);
|
||||||
|
|
||||||
unsigned count;
|
uint32_t count;
|
||||||
if (send)
|
if (send)
|
||||||
count = (unsigned int)(player->attributeChanges.attributeIndexes.size());
|
count = static_cast<uint32_t>(player->attributeChanges.attributeIndexes.size());
|
||||||
|
|
||||||
RW(count, send);
|
RW(count, send);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue