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

Handle a GCC warning in lv_draw_triangle

This commit is contained in:
Themba Dube 2019-10-31 19:57:30 -04:00
parent 847527df0d
commit dd1eed7c1b

View File

@ -85,6 +85,10 @@ void lv_draw_triangle(const lv_point_t * points, const lv_area_t * clip, const l
i_left = 0;
i_right = 1;
break;
default:
/*Shouldn't happen, but GCC will complain if we don't handle it*/
LV_LOG_WARN("lv_draw_triangle: unexpected condition for y_min_i");
return; /*Bail here*/
}
if(points[i_right].x < points[i_left].x) {