This website works better with JavaScript.
Home
Explore
Help
Sign In
Archivist
/
raylib-src
mirror of
https://github.com/raysan5/raylib
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
24
Wiki
Activity
Browse Source
Corrected bug on TextJoin()
pull/1263/head
raysan5
4 years ago
parent
aff47d1564
commit
c43e889e39
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
src/text.c
+ 1
- 1
src/text.c
View File
@ -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
;
}
}
}
Write
Preview
Loading…
Cancel
Save