TFT ILI9341 mirror image

Device:
ESP32-Box Cube-1 (ESP32 + ILI9341 + FT6336U )
Ver:
bodmer/TFT_eSPI: 2.5.43
lvgl/lvgl@: 9.2.2

Code:

...
  lv_init();

  // Create a display object
  lv_display_t * disp;
  // Initialize the TFT display using the TFT_eSPI library
  disp = lv_tft_espi_create(SCREEN_WIDTH, SCREEN_HEIGHT, draw_buf, sizeof(draw_buf));
  lv_display_set_rotation(disp, LV_DISPLAY_ROTATION_0);
...

The simplest app with 2 buttons. Everything works, but the image is mirrored along the H axis.

Is there an easy way to change the mirroring?