URTouch pins

i have a 3.5 tft from mcufriend. i cannot figure out how to define the pins with URTouch by default the pins are set as "URTouch myTouch( 6, 5, 4, 3, 2);" when i run the calibration for my screen and these are the results.

MCUFRIEND_kbv ID=0x6814  320 x 480

const int XP=7,XM=A1,YP=A2,YM=6; //320x480 ID=0x6814
const int TS_LEFT=141,TS_RT=918,TS_TOP=132,TS_BOT=938;
PORTRAIT CALIBRATION     320 x 480
x = map(p.x, LEFT=141, RT=918, 0, 320)
y = map(p.y, TOP=132, BOT=938, 0, 480)
Touch Pin Wiring XP=7 XM=A1 YP=A2 YM=6
LANDSCAPE CALIBRATION    480 x 320
x = map(p.y, LEFT=132, RT=938, 0, 480)
y = map(p.x, TOP=918, BOT=141, 0, 320)

if i use the default pins the screen glitches out and has lots on lines in it. obviously the pins are incorrent but how do i define my pins with urtouch?

const int XP=7,XM=A1,YP=A2,YM=6; ?! aren't these the pins you should set according to the ID ..