Reviewed some TODO comments

This commit is contained in:
Ray 2021-09-23 00:18:47 +02:00
parent dcd289d931
commit 00a763ea44
7 changed files with 5 additions and 10 deletions

View file

@ -5741,7 +5741,7 @@ static Model LoadVOX(const char *fileName)
memcpy(pmesh->vertices, pvertices, size);
// Copy indices
// TODO: compute globals indices array
// TODO: Compute globals indices array
size = voxarray.indices.used * sizeof(unsigned short);
pmesh->indices = MemAlloc(size);
memcpy(pmesh->indices, pindices, size);