pull/3506/head
Malcolm Tyrrell 2020-11-19 16:30:44 +00:00
parent c00153089a
commit 885a196c74
1 changed files with 1 additions and 1 deletions

View File

@ -318,7 +318,7 @@ void FBXConverter::ConvertNodes(uint64_t id, aiNode *parent, aiNode *root_node)
parent->mChildren = new aiNode *[nodes.size()]();
parent->mNumChildren = static_cast<unsigned int>(nodes.size());
for (int i = 0; i < nodes.size(); ++i)
for (unsigned int i = 0; i < nodes.size(); ++i)
{
parent->mChildren[i] = nodes[i].mOwnership.release();
}