Binary to text, fix attempt 1.

This commit is contained in:
Josh W 2023-11-24 15:49:59 -05:00
parent 0e0f60fbbc
commit 8eca40e306

View file

@ -268,7 +268,7 @@ fn debug_print_glyph(glyph: [u8; 14]) {
let bits = line.view_bits::<Lsb0>();
for pixel in bits.iter() {
if pixel == false {
print!(".");
print!("_");
} else {
print!("@");
}