Skip to content

Commit 29af2f2

Browse files
Merge pull request #101 from trainsofthought/inputmodule-font-of-0
inputmodule-control: Updated font of 0
2 parents 9874e03 + 8f428bf commit 29af2f2

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)