We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4f992f4 commit a13e1d6Copy full SHA for a13e1d6
1 file changed
python/main.cpp
@@ -44,7 +44,8 @@ pyLoadObj(PyObject* self, PyObject* args)
44
if(!PyArg_ParseTuple(args, "s", &filename))
45
return NULL;
46
47
- tinyobj::LoadObj(shapes, materials, filename);
+ std::string err;
48
+ tinyobj::LoadObj(shapes, materials, err, filename);
49
50
pyshapes = PyDict_New();
51
pymaterials = PyDict_New();
0 commit comments