Browse Source

Update rmodels.c

pull/3861/head
Ray 9 months ago
parent
commit
30604080ef
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/rmodels.c

+ 1
- 1
src/rmodels.c View File

@ -5666,7 +5666,7 @@ static Model LoadVOX(const char *fileName)
// Copy indices
size = voxarray.indices.used*sizeof(unsigned short);
pmesh->indices = (float *)RL_MALLOC(size);
pmesh->indices = (unsigned short *)RL_MALLOC(size);
memcpy(pmesh->indices, pindices, size);
pmesh->triangleCount = (pmesh->vertexCount/4)*2;

Loading…
Cancel
Save