Thanks for this contribution ^^

I made this function just to not display the text. You can display it in the code.

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);	
}


Last edited by djfeeler; 08/21/13 04:35.