summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichele Bini <michele.bini@gmail.com>2022-04-03 04:46:55 (GMT)
committerMichele Bini <michele.bini@gmail.com>2022-04-03 04:46:55 (GMT)
commit4bca082ceab2ed8c56a1929cdc0c850bae75240f (patch)
tree7407d5250b1cdf76df469ed358c301875fd05df0
parent981dd7358c04d0a3d6b305b9f96e398cdcb6937f (diff)
compilation fix for unmodified lvgl library
-rw-r--r--src/displayapp/fonts/neofont.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/displayapp/fonts/neofont.c b/src/displayapp/fonts/neofont.c
index f2c4b75..9248769 100644
--- a/src/displayapp/fonts/neofont.c
+++ b/src/displayapp/fonts/neofont.c
@@ -433,7 +433,7 @@ static const uint8_t * neofont15_glyph_bitmap_cb(const lv_font_t * font, uint32_
}
/*Describe the properties of a font*/
-const lv_font_t neofont15 = {
+lv_font_t neofont15 = {
.get_glyph_dsc = neofont15_glyph_dsc_cb, /*Set a callback to get info about gylphs*/
.get_glyph_bitmap = neofont15_glyph_bitmap_cb, /*Set a callback to get bitmap of a glyp*/
.line_height = 18, /*The real line height where any text fits*/