Fixed copy _readBuffer bug.

This commit is contained in:
Robert Osfield 2016-04-21 14:07:22 +01:00
parent 653af27d02
commit ec19ee9655

View File

@ -410,7 +410,7 @@ void Camera::inheritCullSettings(const CullSettings& settings, unsigned int inhe
_drawBuffer = camera->_drawBuffer; _drawBuffer = camera->_drawBuffer;
if (inheritanceMask & READ_BUFFER) if (inheritanceMask & READ_BUFFER)
_drawBuffer = camera->_readBuffer; _readBuffer = camera->_readBuffer;
} }
} }