New xit3d -> HINT for textureloader

Changing xith3d.jar from Xith3D_2004-05-03_cvs to
Xith3D_2004-07-28_cvs lets show my graphic a bit
different.
There must be a change in the TextureLoader-class.

A call (in Xith3D_2004-05-03_cvs):

Texture2D tex = (Texture2D)
TextureLoader.tf.loadTexture( bImage, “RGB”, false, Texture.NICEST, Texture.NICEST, Texture.WRAP );

does not the same how in Xith3D_2004-07-28_cvs.
A change in the second parameter must be done,
to fix this problem :

Texture2D tex = (Texture2D)
TextureLoader.tf.loadTexture( bImage, “RGBA”, false, Texture.NICEST, Texture.NICEST, Texture.WRAP );