Posts: 3,324
Threads: 96
Joined: Sep 2013
PT_Text's size is not MAX_TEXT_DRAWS
Also, that's a horrible macro.
Posts: 3,324
Threads: 96
Joined: Sep 2013
Код:
new PT_Text[Text:MAX_TEXT_DRAWS][800 char];
new PT_DefaultText[Text:MAX_TEXT_DRAWS][800 char];
//And to clear it:
#define ResetTextDrawText(%0) %0 = PT_DefaultText
Even with that though, it is only proper to use PT_Text in there. It's still not a good macro. It's just an example of how to correctly do it your way.
Posts: 22
Threads: 9
Joined: Aug 2015
Reputation:
0
Yeah, it's only for PT_Text.
This "system" is for moving TextDraw from current position to another position. Specifically, changing TextDrawTextSize because I don't see another way.
Thanks Crayder.