Here is a simple implementation of str_height if anyone else needs it (without wwrap in texts):

Code:
function str_height(STRING* str, FONT* fnt)
{
	return fnt->dy * (int)*str->pad; 
}



Only tested on A7. It might change(or already have changed in A8) because pad is not documented wink