diff options
| author | Ray <[email protected]> | 2021-03-02 00:34:10 +0100 |
|---|---|---|
| committer | Ray <[email protected]> | 2021-03-02 00:34:10 +0100 |
| commit | 2ff5fa73e9a4745aa1cc37a4e5be05c841778200 (patch) | |
| tree | b7ed37f6d2d0b728f24aeb866f4f37378cc8fe0f /src/models.c | |
| parent | 742206c1f27dc987d3bf2ca09e5e72db8b6840f8 (diff) | |
| download | raylib-2ff5fa73e9a4745aa1cc37a4e5be05c841778200.tar.gz raylib-2ff5fa73e9a4745aa1cc37a4e5be05c841778200.zip | |
REVIEWED: rlUnloadMesh() #1615
Diffstat (limited to 'src/models.c')
| -rw-r--r-- | src/models.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/models.c b/src/models.c index b9222855..b3cd625e 100644 --- a/src/models.c +++ b/src/models.c @@ -859,7 +859,7 @@ void UploadMesh(Mesh *mesh) void UnloadMesh(Mesh mesh) { // Unload rlgl mesh vboId data - rlUnloadMesh(mesh); + rlUnloadMesh(&mesh); RL_FREE(mesh.vertices); RL_FREE(mesh.texcoords); |
