Skip to content

Commit

Permalink
screen: better font for 2 & 5
Browse files Browse the repository at this point in the history
  • Loading branch information
WestXu committed May 8, 2024
1 parent d3d7613 commit 95b8505
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/screen/character.rs
Original file line number Diff line number Diff line change
Expand Up @@ -295,9 +295,9 @@ impl Character {
'2' => Character {
font,
pixels: vec![
vec![o, o, x], //
vec![x, o, x], //
vec![x, o, o], //
vec![o, o, o], //
vec![x, x, x], //
vec![o, o, o], //
],
},
'3' => Character {
Expand All @@ -319,7 +319,7 @@ impl Character {
'5' => Character {
font,
pixels: vec![
vec![x, o, o], //
vec![x, o, x], //
vec![x, o, o], //
vec![o, o, x], //
],
Expand Down

0 comments on commit 95b8505

Please sign in to comment.