Merge branch 'develop' of https://github.com/iw4x/iw4x-client into diamante/bot

This commit is contained in:
Louvenarde 2023-08-29 00:05:29 +02:00
commit a7b5a578b4
2 changed files with 2 additions and 2 deletions

View File

@ -306,7 +306,7 @@ namespace Assets
Game::CollisionPartition* destPartitions = buffer->dest<Game::CollisionPartition>();
buffer->saveArray(asset->partitions, asset->partitionCount);
for (int i = 0; i < asset->partitionCount; ++i)
for (size_t i = 0; i < asset->partitionCount; ++i)
{
Game::CollisionPartition* destPartition = &destPartitions[i];
Game::CollisionPartition* partition = &asset->partitions[i];

View File

@ -3220,7 +3220,7 @@ namespace Game
unsigned char* triEdgeIsWalkable;
unsigned int borderCount;
CollisionBorder* borders;
int partitionCount;
unsigned int partitionCount;
CollisionPartition* partitions;
unsigned int aabbTreeCount;
CollisionAabbTree* aabbTrees;