From 86a72fc2eac715ac48ebcca515074c3a992ba010 Mon Sep 17 00:00:00 2001 From: august Date: Tue, 13 Feb 2024 18:08:47 -0500 Subject: [PATCH] some cleaning up --- src/main.rs | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/src/main.rs b/src/main.rs index 2f9927d..f453615 100644 --- a/src/main.rs +++ b/src/main.rs @@ -54,16 +54,5 @@ fn main() -> std::io::Result<()> { let mut outfile = File::create("./cozette.bin")?; outfile.set_len(0xFFFF)?; outfile.write_all(&reordered)?; - //for byte in reordered.iter() { - // for i in 0..8 { - // // character number + row offset & bitmask = pixel - // if byte & 0x80 >> i > 0 { - // print!("█"); - // } else { - // print!(" "); - // } - // } - // println!(""); - //} Ok(()) }