update examples missing unloadtexture (#4234)

This commit is contained in:
Anthony Carbajal
2024-08-09 02:03:27 -05:00
committed by GitHub
parent 5233b80fb7
commit 070c1c9d63
4 changed files with 5 additions and 0 deletions

View File

@@ -164,6 +164,8 @@ int main(void)
//--------------------------------------------------------------------------------------
UnloadMesh(mesh); // Unload the mesh
UnloadShader(shader); // Unload shader
UnloadTexture(texture); // Unload texture
UnloadTexture(light); // Unload texture
CloseWindow(); // Close window and OpenGL context
//--------------------------------------------------------------------------------------