mirror of
https://github.com/raysan5/raylib.git
synced 2025-12-22 06:15:40 +00:00
Fix #5413
This commit is contained in:
@@ -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)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user