ソースを参照

Fix Issue #2441 (#2442)

Remove line that caused a memory leak
pull/2446/head
Leonardo Montagner 3年前
committed by GitHub
コミット
3580267479
この署名に対応する既知のキーがデータベースに存在しません GPGキーID: 4AEE18F83AFDEB23
1個のファイルの変更0行の追加1行の削除
  1. +0
    -1
      src/rmodels.c

+ 0
- 1
src/rmodels.c ファイルの表示

@ -4643,7 +4643,6 @@ static Model LoadGLTF(const char *fileName)
// Load our model data: meshes and materials
model.meshCount = primitivesCount;
model.meshes = RL_CALLOC(model.meshCount, sizeof(Mesh));
for (int i = 0; i < model.meshCount; i++) model.meshes[i].vboId = (unsigned int*)RL_CALLOC(MAX_MESH_VERTEX_BUFFERS, sizeof(unsigned int));
// NOTE: We keep an extra slot for default material, in case some mesh requires it
model.materialCount = (int)data->materials_count + 1;

読み込み中…
キャンセル
保存