summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVito Caputo <vcaputo@pengaru.com>2026-09-14 20:48:38 -0700
committerVito Caputo <vcaputo@pengaru.com>2026-09-14 20:48:38 -0700
commit1b8c350ee8a18708127d4df4088fc43c7b65982c (patch)
treeffc0767f72b8b346f33900c208b47e8f05c6859e
parent60d416a88369fb97d59a22f67c5fa17440461d43 (diff)
ascii: bump '<' and '>' glyphs up one pixel
These look a bit low relative to the others in situ, let's try bumping them higher a row.
-rw-r--r--src/ascii.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ascii.c b/src/ascii.c
index 5e6183f..daac882 100644
--- a/src/ascii.c
+++ b/src/ascii.c
@@ -355,7 +355,6 @@ const char ascii_chars[256][ASCII_WIDTH * ASCII_HEIGHT] = {
0, 0, 0, 0, 0,
},
['<'] = {
- 0, 0, 0, 0, 0,
0, 0, 0, 0, 1,
0, 0, 0, 1, 0,
0, 0, 1, 0, 0,
@@ -366,6 +365,7 @@ const char ascii_chars[256][ASCII_WIDTH * ASCII_HEIGHT] = {
0, 0, 0, 1, 0,
0, 0, 0, 0, 1,
0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0,
},
['='] = {
0, 0, 0, 0, 0,
@@ -381,7 +381,6 @@ const char ascii_chars[256][ASCII_WIDTH * ASCII_HEIGHT] = {
0, 0, 0, 0, 0,
},
['>'] = {
- 0, 0, 0, 0, 0,
1, 0, 0, 0, 0,
0, 1, 0, 0, 0,
0, 0, 1, 0, 0,
@@ -392,6 +391,7 @@ const char ascii_chars[256][ASCII_WIDTH * ASCII_HEIGHT] = {
0, 1, 0, 0, 0,
1, 0, 0, 0, 0,
0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0,
},
['?'] = {
0, 1, 1, 1, 0,
© All Rights Reserved