Destroy mapPivot nodes as we go

pull/4977/head
Turo Lamminen 2023-02-24 13:26:34 +02:00
parent be28f0949b
commit 3bdfecb0ed
1 changed files with 2 additions and 1 deletions

View File

@ -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);
}
}