1
0
mirror of https://github.com/lvgl/lvgl.git synced 2025-01-14 06:42:58 +08:00

Assume display is not rotated by default

This commit is contained in:
embeddedt 2019-03-31 19:15:37 -04:00
parent 09f362a1ed
commit 103f6c3041

View File

@ -60,7 +60,7 @@ void lv_disp_drv_init(lv_disp_drv_t * driver)
driver->hor_res = LV_HOR_RES_MAX;
driver->ver_res = LV_VER_RES_MAX;
driver->buffer = NULL;
driver->rotated = 1;
driver->rotated = 0;
#if LV_ANTIALIAS
driver->antialiasing = true;