summaryrefslogtreecommitdiff
path: root/src/displayapp/fonts/neofont.c
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-03-31 14:56:45 (GMT)
commitea0b6d97a43ac4c11bedefb0e71851e5292c1370 (patch)
tree270034d9ce0534e043bcfb48a78830e7d96571e8 /src/displayapp/fonts/neofont.c
parent2c23b1cc6911a14dba14fcc04ac52995d672ebcd (diff)
mix work
Diffstat (limited to 'src/displayapp/fonts/neofont.c')
-rw-r--r--src/displayapp/fonts/neofont.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/displayapp/fonts/neofont.c b/src/displayapp/fonts/neofont.c
index b2728f3..f2c4b75 100644
--- a/src/displayapp/fonts/neofont.c
+++ b/src/displayapp/fonts/neofont.c
@@ -297,12 +297,17 @@ static const uint8_t glyphs[][2] = {
X, _, _,
_, _, X ),
+ G( _, _, _,
+ _, X, _,
+ X, X, X,
+ _, X, _,
+ _, _, _ ),
+
G( _, X, _,
X, X, X,
_, X, _,
X, X, X,
_, X, _ ),
-
};
#undef X
@@ -330,7 +335,7 @@ static const uint8_t * neofont0_glyph_bitmap_cb(const lv_font_t * font, uint32_t
}
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) {