diff options
Diffstat (limited to 'src/displayapp/fonts/neofont.c')
| -rw-r--r-- | src/displayapp/fonts/neofont.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/displayapp/fonts/neofont.c b/src/displayapp/fonts/neofont.c index e375906..d883ad2 100644 --- a/src/displayapp/fonts/neofont.c +++ b/src/displayapp/fonts/neofont.c @@ -303,6 +303,12 @@ static const uint8_t glyphs[][2] = { X, _, _, _, _, X ), + G( _, _, _, + _, X, _, + X, X, X, + _, X, _, + _, _, _ ), + G( _, X, _, X, X, X, _, X, _, @@ -362,7 +368,7 @@ static const uint8_t * neofont0mono_glyph_bitmap_cb(const lv_font_t * font, uint } if (unicode_letter == ' ') { return spc; } - static const char *symbols = "|-/:.,_?!%#"; + static const char *symbols = "|-/:.,_?!%+#"; if (unicode_letter < 0x80) { char*x = strchr(symbols,((uint8_t)unicode_letter)); if (x != NULL) { |
