Skip to content
Snippets Groups Projects
Commit 142e05f6 authored by Rye Mutt's avatar Rye Mutt :bread:
Browse files

Fix crash due to mismatched malloc call in LLVBOPool

parent 20a7417e
No related branches found
No related tags found
No related merge requests found
......@@ -253,7 +253,7 @@ void LLVBOPool::release(U32 name, volatile U8* buffer, U32 size)
llassert(vbo_block_size(size) == size);
deleteBuffer(name);
ll_aligned_free_fallback((U8*) buffer);
ll_aligned_free<64>((U8*) buffer);
if (mType == GL_ARRAY_BUFFER)
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment