Updated some examples with inconsistencies

This commit is contained in:
Ray
2025-09-04 18:57:00 +02:00
parent fb42819eab
commit 7646d08751
12 changed files with 71 additions and 39 deletions

View File

@@ -17,7 +17,7 @@
#include "raylib.h"
#include <stdlib.h>
#include <stdlib.h> // Required for: calloc(), free()
//--------------------------------------------------------------------------------------
// Module Functions Declaration
@@ -199,5 +199,6 @@ static void AddCodepointRange(Font *font, const char *fontPath, int start, int s
UnloadFont(*font);
*font = LoadFontEx(fontPath, 32, updatedCodepoints, updatedCodepointCount);
RL_FREE(updatedCodepoints);
}