fixes related to tinyxml2

This commit is contained in:
erwincoumans
2018-04-12 12:46:43 -07:00
parent 9c5d757879
commit dbb0318782
2 changed files with 4 additions and 5 deletions

View File

@@ -876,11 +876,10 @@ bool btBulletXmlWorldImporter::loadFile(const char* fileName)
{
XMLDocument doc;
bool loadOkay = doc.LoadFile(fileName);
//dump_to_stdout(&doc,0);
XMLError loadOkay = doc.LoadFile(fileName);
if (loadOkay)
if (loadOkay==XML_SUCCESS)
{
if (get_int_attribute_by_name(doc.FirstChildElement()->ToElement(),"version", &m_fileVersion))
{

View File

@@ -575,7 +575,7 @@ void LoadMeshFromCollada(const char* relativeFileName, btAlignedObjectArray<GLIn
}
XMLDocument doc;
if (!doc.LoadFile(filename))
if (doc.LoadFile(filename) != XML_SUCCESS)
return;
//We need units to be in meter, so apply a scaling using the asset/units meter