Thanks for this contribution ^^
I made this function just to not display the text. You can display it in the code.
void cltext_reset(CLTEXT* cltext)
{
CLLIST* current = cltext.texts;
do
{
reset(current.element, SHOW | LIGHT | TRANSLUCENT);
if (current.next != NULL) current = current.next;
}while (current.next != NULL);
}