Browse Source

Fix typo in collada parser

closes https://github.com/assimp/assimp/issues/3599
Kim Kulling 4 years ago
parent
commit
a2b889ab09
1 changed files with 1 additions and 1 deletions
  1. 1 1
      code/AssetLib/Collada/ColladaParser.cpp

+ 1 - 1
code/AssetLib/Collada/ColladaParser.cpp

@@ -334,7 +334,7 @@ void ColladaParser::ReadAssetInfo(XmlNode &node) {
         const std::string &currentName = currentNode.name();
         const std::string &currentName = currentNode.name();
         if (currentName == "unit") {
         if (currentName == "unit") {
             mUnitSize = 1.f;
             mUnitSize = 1.f;
-            XmlParser::getFloatAttribute(node, "meter", mUnitSize);
+            XmlParser::getFloatAttribute(currentNode, "meter", mUnitSize);
         } else if (currentName == "up_axis") {
         } else if (currentName == "up_axis") {
             std::string v;
             std::string v;
             if (!XmlParser::getValueAsString(currentNode, v)) {
             if (!XmlParser::getValueAsString(currentNode, v)) {