diff options
| author | Ray <raysan5@gmail.com> | 2019-01-21 10:25:59 +0100 |
|---|---|---|
| committer | Ray <raysan5@gmail.com> | 2019-01-21 10:25:59 +0100 |
| commit | e91c84e33a5ae1ab3a963445b545bbcde2298224 (patch) | |
| tree | 780a773e1d1b143267d4c93480c3cb1ebc6f4319 /src | |
| parent | 9b97cf6972c1ffb456a3831916a7afe74cfa458e (diff) | |
| download | raylib-e91c84e33a5ae1ab3a963445b545bbcde2298224.tar.gz raylib-e91c84e33a5ae1ab3a963445b545bbcde2298224.zip | |
Remove comment
Diffstat (limited to 'src')
| -rw-r--r-- | src/text.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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); |
