Browse Source

Remove comment

pull/733/head
Ray 6 years ago
parent
commit
e91c84e33a
1 changed files with 2 additions and 0 deletions
  1. +2
    -0
      src/text.c

+ 2
- 0
src/text.c View File

@ -1142,6 +1142,8 @@ const char *TextInsert(const char *text, const char *insert, int position)
// REQUIRES: strcat()
const char *TextJoin(const char **textList, int count, const char *delimiter)
{
// TODO: Make sure joined text could fit inside MAX_TEXT_BUFFER_LENGTH
static char text[MAX_TEXT_BUFFER_LENGTH] = { 0 };
memset(text, 0, MAX_TEXT_BUFFER_LENGTH);

Loading…
Cancel
Save