revert accidently renaming of m_depthvalues4

This commit is contained in:
Erwin Coumans
2016-08-12 13:55:37 -07:00
parent 4abe083388
commit c75bebcafe
5 changed files with 6 additions and 6 deletions

View File

@@ -1231,7 +1231,7 @@ static PyObject* pybullet_renderImage(PyObject* self, PyObject* args)
// TODO(hellojas): validate depth values make sense
int depIndex = i+j*imageData.m_pixelWidth;
{
item = PyFloat_FromDouble(imageData.m_depthValues4[depIndex]);
item = PyFloat_FromDouble(imageData.m_depthValues[depIndex]);
PyTuple_SetItem(pylistDep, depIndex, item);
}
{