mirror of
https://github.com/lvgl/lvgl.git
synced 2025-01-28 07:03:00 +08:00
add missing defines to lv_font_symbol_30
This commit is contained in:
parent
b521c8b97e
commit
a4812c4706
@ -6835,8 +6835,13 @@ static const lv_font_glyph_dsc_t lv_font_symbol_30_glyph_dsc[] = {
|
|||||||
#endif
|
#endif
|
||||||
};
|
};
|
||||||
lv_font_t lv_font_symbol_30 = {
|
lv_font_t lv_font_symbol_30 = {
|
||||||
|
#if LV_TXT_UTF8
|
||||||
.unicode_first = 61440, /*First Unicode letter in this font*/
|
.unicode_first = 61440, /*First Unicode letter in this font*/
|
||||||
.unicode_last = 62190, /*Last Unicode letter in this font*/
|
.unicode_last = 62190, /*Last Unicode letter in this font*/
|
||||||
|
#else
|
||||||
|
.unicode_first = 192, /*First Unicode letter in this font*/
|
||||||
|
.unicode_last = 241, /*Last Unicode letter in this font*/
|
||||||
|
#endif
|
||||||
.h_px = 30, /*Font height in pixels*/
|
.h_px = 30, /*Font height in pixels*/
|
||||||
.glyph_bitmap = lv_font_symbol_30_glyph_bitmap, /*Bitmap of glyphs*/
|
.glyph_bitmap = lv_font_symbol_30_glyph_bitmap, /*Bitmap of glyphs*/
|
||||||
.glyph_dsc = lv_font_symbol_30_glyph_dsc, /*Description of glyphs*/
|
.glyph_dsc = lv_font_symbol_30_glyph_dsc, /*Description of glyphs*/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user