mirror of
https://github.com/raysan5/raylib.git
synced 2026-01-12 06:28:59 +01:00
Corrected bug on TextJoin()
This commit is contained in:
@ -1312,7 +1312,7 @@ const char *TextJoin(const char **textList, int count, const char *delimiter)
|
||||
{
|
||||
memcpy(textPtr, delimiter, delimiterLen);
|
||||
totalLength += delimiterLen;
|
||||
textPtr += textLength;
|
||||
textPtr += delimiterLen;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user