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:
parent
ab238e07c4
commit
561a88d441
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue