REVIEWED: examples memory allocators, using raylib provided macros

This commit is contained in:
Ray
2026-03-23 11:53:57 +01:00
parent 7e8aca00b6
commit ca1baca7c2
5 changed files with 59 additions and 53 deletions

View File

@ -111,7 +111,7 @@ int main(void)
// De-Initialization
//--------------------------------------------------------------------------------------
free(rectangles);
RL_FREE(rectangles);
CloseWindow(); // Close window and OpenGL context
//--------------------------------------------------------------------------------------