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

Larger buffer for faster mesh cache write

parent a2e73cb4
No related branches found
No related tags found
No related merge requests found
......@@ -3292,7 +3292,7 @@ void LLMeshHeaderHandler::processData(LLCore::BufferArray * /* body */, S32 /* b
file.write(data, data_size);
// zero out the rest of the file
U8 block[MESH_HEADER_SIZE] = {};
U8 block[65536] = {};
while (bytes - file.tell() > sizeof(block))
{
......
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