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

fix compiler error with LV_USE_FILESYSTEM = 0

This commit is contained in:
Gabor Kiss-Vamosi 2019-11-15 09:27:43 +01:00
parent 010d7ef72f
commit 0130856ef9
2 changed files with 5 additions and 1 deletions

View File

@ -12,6 +12,7 @@
#include "lv_draw_img.h"
#include "../lv_misc/lv_math.h"
#include "../lv_misc/lv_log.h"
#include "../lv_misc/lv_mem.h"
/*********************
* DEFINES

View File

@ -656,8 +656,9 @@ static lv_res_t lv_img_decoder_built_in_line_alpha(lv_img_decoder_dsc_t * dsc, l
data_tmp++;
}
}
#if LV_USE_FILESYSTEM
lv_draw_buf_release(fs_buf);
#endif
return LV_RES_OK;
#else
@ -753,7 +754,9 @@ static lv_res_t lv_img_decoder_built_in_line_indexed(lv_img_decoder_dsc_t * dsc,
data_tmp++;
}
}
#if LV_USE_FILESYSTEM
lv_draw_buf_release(fs_buf);
#endif
return LV_RES_OK;
#else
LV_LOG_WARN("Image built-in indexed line reader failed because LV_IMG_CF_INDEXED is 0 in lv_conf.h");