some cleaning up

This commit is contained in:
august kline 2024-02-13 18:08:47 -05:00
parent 9bacd1d28f
commit 86a72fc2ea
1 changed files with 0 additions and 11 deletions

View File

@ -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(())
}