Fixed LoadCodepoints declaring a new local variable shadowing codpoints

This commit is contained in:
Kivi 2025-12-24 00:56:02 +01:00
parent 0a4583ca54
commit 7da18e3fcf

View File

@ -2090,7 +2090,7 @@ int *LoadCodepoints(const char *text, int *count)
int textLength = TextLength(text);
// Allocate a big enough buffer to store as many codepoints as text bytes
int *codepoints = (int *)RL_CALLOC(textLength, sizeof(int));
codepoints = (int *)RL_CALLOC(textLength, sizeof(int));
int codepointSize = 0;
for (int i = 0; i < textLength; codepointCount++)