This commit is contained in:
kaetemi 2014-07-29 16:48:14 +02:00
parent 20acc5a48c
commit 6b6f4fac2f
2 changed files with 5 additions and 5 deletions

View file

@ -508,14 +508,13 @@ std::string CExportNel::getName (MtlBase& mtl)
// -------------------------------------------------- // --------------------------------------------------
// Get the node name // Get the node name
std::string CExportNel::getName (INode& mtl) std::string CExportNel::getName(INode& node)
{ {
// Return its name // Return its name
TCHAR* name=mtl.GetName(); MCHAR* name = node.GetName();
return std::string(name); return std::string(name);
} }
// -------------------------------------------------- // --------------------------------------------------
// Get the NEL node name // Get the NEL node name

View file

@ -363,7 +363,8 @@ void CExportNel::buildSkeleton (std::vector<CBoneBase>& bonesArray, INode& node,
bonesArray.push_back (bone); bonesArray.push_back (bone);
// **** Call on child // **** Call on child
for (int children=0; children<node.NumberOfChildren(); children++) const int numChildren = node.NumberOfChildren();
for (int children=0; children<numChildren; children++)
buildSkeleton (bonesArray, *node.GetChildNode(children), mapBindPos, mapId, nameSet, time, ++idCount, id); buildSkeleton (bonesArray, *node.GetChildNode(children), mapBindPos, mapId, nameSet, time, ++idCount, id);
} }