diff options
fix: rm err throw
-rw-r--r-- | build.rs | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -58,7 +58,7 @@ fn render_character(font: &Font, scale: Scale, character: char) -> Vec<u8> { fn img_to_hex(image: Vec<u8>) -> Vec<u8> { let mut image2: Vec<u8> = Vec::new(); let width = (image[0] as u16) | (image[1] as u16 >> 8); - + let mut i: i32 = -3; for bit in image { i += 1; @@ -108,6 +108,5 @@ fn main() -> Result<(), Box<dyn std::error::Error>> { "UwUSpace".chars().collect(), "CherryBombOne", )?; - File::create("/root/uwu/a/a/a")?; Ok(()) } |