New UTFT Lib

The ITDB802 Touch Lib initializes the touch orientation to portrait and the UTFT Lib initializes to landscape as defaults
From the UTFT Header file:
#define PORTRAIT 0
#define LANDSCAPE 1 // this is the default mode, set it to 0 for Portrait
The same applies to the ITDB802 Touch
From the touch header file:
InitTouch(byte orientation = PORTRAIT); //Set it to 1 for landscape...
So flipping the value to 0 of either the touch init or the UTFT init will give correct results.
Touch init(1) is Landscape with the default UTFTinit
UTFTinit(0)is Portrait with the default Touchinit.I do hope this helps.

Bob