DrawText has a character limit which is way too short if you are using multiline strings
-
It would seem DrawText has a character limit it can display. This current character limit might seem normal if you "write" everything on a single line. But when drawing text over multiple lines using either multiline strings or making use of chr(10) this character limit is way too short and makes no sense at all....
see following program
see output is completely cut off while i still have enough space on my screen to display the complete string and this can only be cause with a hardcoded character limit in that function as far i'm aware
please increase or remove the character limit
-
We're aware of the character limit (1024) and have plans to address it. Thanks for the report and the example!
-
i know the example might seem weird but i actually had this problem in my competetion entry i'm making it's there that i first noticed it. I'll probably have to split it up in multiple writetext calls to go around the issue currently. Good to know it's going to be addressed though