optimizing

This commit is contained in:
Perfare
2018-07-24 22:05:02 +08:00
parent d523862fac
commit 35edb9d391
5 changed files with 84 additions and 70 deletions

View File

@ -218,7 +218,7 @@ namespace AssetStudio
while (parent != nullptr)
{
exportFrames->Add(parent->Name);
parent = (ImportedFrame^)parent->Parent;
parent = parent->Parent;
}
List<ImportedBone^>^ boneList = meshListSome->BoneList;
@ -232,7 +232,7 @@ namespace AssetStudio
while (boneParent != nullptr)
{
exportFrames->Add(boneParent->Name);
boneParent = (ImportedFrame^)boneParent->Parent;
boneParent = boneParent->Parent;
}
}
}