add missing return

This commit is contained in:
Gered 2013-04-01 17:23:11 -04:00
parent ee9928ad79
commit d8c19411ec

View file

@ -64,6 +64,8 @@ BOOL IndexBuffer::Initialize(GraphicsDevice *graphicsDevice, const IndexBuffer *
Resize(source->GetNumElements());
memcpy(&m_buffer[0], source->GetBuffer(), GetNumElements() * GetElementWidthInBytes());
return TRUE;
}
void IndexBuffer::Set(const uint16_t *indices, uint32_t numIndices)