mirror of
https://github.com/raysan5/raylib.git
synced 2026-01-14 03:15:17 +00:00
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);
|
||||
|
||||
// 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++)
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user