lv_font_fmt_txt: don't use bitfield for cmap to avoid bugs in Visual Studio

This commit is contained in:
Gabor Kiss-Vamosi
2019-11-21 12:00:23 +01:00
parent 810059e3ca
commit 9a94f88885

View File

@@ -113,7 +113,7 @@ typedef struct {
uint16_t list_length; uint16_t list_length;
/** Type of this character map*/ /** Type of this character map*/
lv_font_fmt_txt_cmap_type_t type :2; lv_font_fmt_txt_cmap_type_t type;
}lv_font_fmt_txt_cmap_t; }lv_font_fmt_txt_cmap_t;
/** A simple mapping of kern values from pairs*/ /** A simple mapping of kern values from pairs*/