summaryrefslogtreecommitdiff
path: root/src/displayapp/fonts
diff options
context:
space:
mode:
authorMichele Bini <michele.bini@gmail.com>2022-03-31 14:56:45 (GMT)
committerMichele Bini <michele.bini@gmail.com>2022-04-10 07:19:57 (GMT)
commit8286a6051729a5c513a416c34b5626a83254751d (patch)
tree29f45cec0df22b282e15bc6787379234f53d7749 /src/displayapp/fonts
parente61e5be679e4e07954c157c3e8aac26f824b01fb (diff)
mix work
Diffstat (limited to 'src/displayapp/fonts')
-rw-r--r--src/displayapp/fonts/neofont.c8
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) {