Browse Source

Fix #5413

pull/5419/head
Ray 1 month ago
parent
commit
80ad96acc2
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      examples/text/text_strings_management.c

+ 1
- 1
examples/text/text_strings_management.c View File

@ -316,7 +316,7 @@ void SliceTextParticle(TextParticle *tp, int particlePos, int sliceLength, TextP
void SliceTextParticleByChar(TextParticle *tp, char charToSlice, TextParticle *tps, int *particleCount)
{
int tokenCount = 0;
">const char **tokens = TextSplit(tp->text, charToSlice, &tokenCount);
char **tokens = TextSplit(tp->text, charToSlice, &tokenCount);
if (tokenCount > 1)
{

Loading…
Cancel
Save