1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-19 22:23:51 +00:00

Fix "comparison between signed and unsigned integer expressions"

This commit is contained in:
Koncord 2016-12-21 14:46:36 +08:00
parent ab238e07c4
commit 561a88d441

View file

@ -26,7 +26,7 @@ void PacketInventory::Packet(RakNet::BitStream *bs, BasePlayer *player, bool sen
RW(player->inventory.count, send); RW(player->inventory.count, send);
for (int i = 0; i < player->inventory.count; i++) for (unsigned int i = 0; i < player->inventory.count; i++)
{ {
Item item; Item item;