diff options
| author | raysan5 <[email protected]> | 2020-05-27 13:45:11 +0200 |
|---|---|---|
| committer | raysan5 <[email protected]> | 2020-05-27 13:45:11 +0200 |
| commit | c43e889e3929f8d1bee05e56443946dd970c127e (patch) | |
| tree | cd8db10786a22819a49dd26ce02de8874dcce56e /src/text.c | |
| parent | aff47d156474afc5f0e7e0d8b5ce61c013d470b3 (diff) | |
| download | raylib-c43e889e3929f8d1bee05e56443946dd970c127e.tar.gz raylib-c43e889e3929f8d1bee05e56443946dd970c127e.zip | |
Corrected bug on TextJoin()
Diffstat (limited to 'src/text.c')
| -rw-r--r-- | src/text.c | 2 |
1 files changed, 1 insertions, 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; } } } |
