Skip to content

Commit 8f428bf

Browse files
trainsofthoughtJohnAZoidberg
authored andcommitted
inputmodule-control: Updated font of 0
Changed 0 to be the same horizontal length as the rest of the numbers. Updated to show the zero version with two pixels in the center.
1 parent 9874e03 commit 8f428bf

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

inputmodule-control/src/font.rs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -147,12 +147,12 @@ pub fn convert_symbol(symbol: &str) -> Vec<u8> {
147147
pub fn convert_font(c: char) -> Vec<u8> {
148148
match c {
149149
'0' => vec![
150-
0, 1, 1, 0, 0,
151-
1, 0, 0, 1, 0,
152-
1, 0, 0, 1, 0,
153-
1, 0, 0, 1, 0,
154-
1, 0, 0, 1, 0,
155-
0, 1, 1, 0, 0,
150+
0, 1, 1, 1, 0,
151+
1, 0, 0, 0, 1,
152+
1, 0, 1, 0, 1,
153+
1, 0, 1, 0, 1,
154+
1, 0, 0, 0, 1,
155+
0, 1, 1, 1, 0,
156156
],
157157

158158
'1' => vec![

0 commit comments

Comments
 (0)