Fixed LoadCodepoints declaring a new local variable shadowing codpoints (#5430)
This commit is contained in:
parent
0a4583ca54
commit
ddb827fb6f
|
|
@ -2090,7 +2090,7 @@ int *LoadCodepoints(const char *text, int *count)
|
||||||
int textLength = TextLength(text);
|
int textLength = TextLength(text);
|
||||||
|
|
||||||
// Allocate a big enough buffer to store as many codepoints as text bytes
|
// 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;
|
int codepointSize = 0;
|
||||||
for (int i = 0; i < textLength; codepointCount++)
|
for (int i = 0; i < textLength; codepointCount++)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user