HY-TFT240 how to find out what driver to use ?

Hello guys just 1 question how can i find out what model name or driver i should use in my code im using HY-TFT240 screen what i bough couple of years ago today decided to hook it on but found out that i cant connect it only because i have wrong driver(model name) in code and i cant figure it out where to find out !
UTFT myGLCD(ITDB32S,38,39,40,41);

#include <UTFT.h>

// Declare which fonts we will be using
extern uint8_t SmallFont[];
extern uint8_t BigFont[];
extern uint8_t SevenSegNumFont[];

// Set the pins to the correct ones for your development shield

UTFT myGLCD(ITDB32S,38,39,40,41);

void setup()
{
  myGLCD.InitLCD();

  myGLCD.clrScr();
}

void loop()
{
  myGLCD.setColor(0, 255, 0);
  myGLCD.setBackColor(0, 0, 0);

  myGLCD.print(String("hi"), CENTER, 0);
myGLCD.print(String("hi"), CENTER, 0);

}

Your display has got an Ilitek ILI9325. I Googled and got this page which you might find useful.

I have no idea what gobbledgook number you prefer.

I would use model = ILI9325C in the constructor.

David.