[HELP] Mirrored display screen of 3.2 TFT 320*480 driver ILI9486

Hi, I'm a beginner looking for some help

I bought a new display from ebay: 3.2inch 320*480 - ILI9486 - Bus:16bits

My program was working on my former similar display but with driver ILI9481.

using this part of the following code

#include<UTFT.h>
extern uint8_t Various_Symbols_32x32[];
UTFT myGLCD(CTE32HR,38,39,40,41);

But now when I load my program to this new display (ILI9486) all the display is seen mirrored (like when you see on a mirror).

My question is how to have my new display shows in the right way ?
(I tried "myGLCD.InitLCD(...)" without success or maybe there is a kind of "SetRotation" command existing which I didn't found in the documentation)

I will highly appreciate any help

I have found out, it was only a matter to write this code

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

Thanks! I had same problem.