From 56f266749fa6233442abab418b1a0d12c66f7436 Mon Sep 17 00:00:00 2001 From: Gabor Date: Mon, 19 Jun 2017 12:55:02 +0200 Subject: [PATCH] Update function calls with LV_IMG_ENABLE_SYMBOLS 1 --- lv_obj/lv_refr.c | 2 +- lv_objx/lv_img.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lv_obj/lv_refr.c b/lv_obj/lv_refr.c index 96dc7a06d..78a0205df 100644 --- a/lv_obj/lv_refr.c +++ b/lv_obj/lv_refr.c @@ -299,7 +299,7 @@ static void lv_refr_area_part_vdb(const area_t * area_p) /*Do the refreshing from the top object*/ lv_refr_make(top_p, &start_mask); - + /*Flush the content of the VDB*/ lv_vdb_flush(); } diff --git a/lv_objx/lv_img.c b/lv_objx/lv_img.c index 51278384a..3fcc289df 100644 --- a/lv_objx/lv_img.c +++ b/lv_objx/lv_img.c @@ -325,7 +325,7 @@ static bool lv_img_design(lv_obj_t * img, const area_t * mask, lv_design_mode_t for(; cords_tmp.x1 < cords.x2; cords_tmp.x1 += ext->w, cords_tmp.x2 += ext->w) { #if LV_IMG_ENABLE_SYMBOLS == 0 - lv_draw_img(&cords_tmp, mask, style, opa, ext->fn); + lv_draw_img(&cords_tmp, mask, style, ext->fn); #else if(sym == false) lv_draw_img(&cords_tmp, mask, style, ext->fn); else lv_draw_label(&cords_tmp, mask, style, ext->fn, TXT_FLAG_NONE, NULL);