Destroy mapPivot nodes as we go
parent
be28f0949b
commit
3bdfecb0ed
|
@ -597,8 +597,9 @@ void LWOImporter::GenerateNodeGraph(std::map<uint16_t, aiNode *> &apcNodes) {
|
|||
}
|
||||
|
||||
//Merge pivot map into node map
|
||||
for (auto itMapPivot = mapPivot.begin(); itMapPivot != mapPivot.end(); ++itMapPivot) {
|
||||
for (auto itMapPivot = mapPivot.begin(); itMapPivot != mapPivot.end();) {
|
||||
apcNodes[itMapPivot->first] = itMapPivot->second;
|
||||
itMapPivot = mapPivot.erase(itMapPivot);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue