Binary to text, fix attempt 1.
This commit is contained in:
parent
0e0f60fbbc
commit
8eca40e306
1 changed files with 1 additions and 1 deletions
|
@ -268,7 +268,7 @@ fn debug_print_glyph(glyph: [u8; 14]) {
|
||||||
let bits = line.view_bits::<Lsb0>();
|
let bits = line.view_bits::<Lsb0>();
|
||||||
for pixel in bits.iter() {
|
for pixel in bits.iter() {
|
||||||
if pixel == false {
|
if pixel == false {
|
||||||
print!(".");
|
print!("_");
|
||||||
} else {
|
} else {
|
||||||
print!("@");
|
print!("@");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue