fix(image): add data_size filed to all c-array images (#5608)

Signed-off-by: Xu Xingliang <xuxingliang@xiaomi.com>
This commit is contained in:
Neo Xu
2024-02-07 12:13:00 +08:00
committed by GitHub
parent d697a3fc95
commit 7579b96b9b
109 changed files with 112 additions and 62 deletions
+1 -1
View File
@@ -242,6 +242,6 @@ const lv_image_dsc_t emoji_F617 = {
.header.cf = LV_COLOR_FORMAT_NATIVE,
.header.w = 72,
.header.h = 72,
.data_size = 5184 * LV_COLOR_DEPTH / 8,
.data = emoji_F617_map,
.data_size = sizeof(emoji_F617_map),
};