- Moderator
- #1
We made a small mistake in the fix for the endless loop. (Screenshot - Notice how it no longer wraps when inside the word, but simply stops)
I tried it that way and now the wrapping inside words works again, and the endless loop does not occur.
Code:
Changing it to this should be better:
// if not even one letter fits into the available space, stop now
if (nextIndex == 0)
break;
Germany