Corrected bug on TextJoin()
This commit is contained in:
parent
aff47d1564
commit
c43e889e39
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue