fixed OgreImporter compilation error with boost scoped_ptr

This commit is contained in:
EdgarsT
2014-06-10 19:58:02 +03:00
parent e09d88fa59
commit 8549e4b1b1
2 changed files with 5 additions and 5 deletions

View File

@@ -325,7 +325,7 @@ uint32_t VertexData::VertexSize(uint16_t source) const
MemoryStream *VertexData::VertexBuffer(uint16_t source)
{
if (vertexBindings.find(source) != vertexBindings.end())
return vertexBindings[source];
return vertexBindings[source].get();
return 0;
}