BigW Consortium Gitlab

Commit e4b677be by Gabor Kiss-Vamosi

lv_hal_disp: fix linked list issue whan adding more displays

parent 769f8643
......@@ -81,7 +81,7 @@ lv_disp_t * lv_disp_drv_register(lv_disp_drv_t *driver)
active = node;
lv_obj_invalidate(lv_scr_act());
} else {
node->next = disp_list;
disp_list->next = node;
}
return node;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment