Hi!

You have flags that are not set in the Lite-C way.

hand_txt.flags = VISIBLE | CENTER_X;

shoud be

hand_txt.flags |= (VISIBLE | CENTER_X);

This could be part of the problem
Hope this helps

Ottawa