ソースを参照

Corrected bug on TextJoin()

pull/1263/head
raysan5 5年前
コミット
c43e889e39
1個のファイルの変更1行の追加1行の削除
  1. +1
    -1
      src/text.c

+ 1
- 1
src/text.c ファイルの表示

@ -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;
}
}
}

読み込み中…
キャンセル
保存