aboutsummaryrefslogtreecommitdiffstats
path: root/build.rs
diff options
context:
space:
mode:
Diffstat (limited to 'build.rs')
-rw-r--r--build.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/build.rs b/build.rs
index be3e7c7..2ba8b9c 100644
--- a/build.rs
+++ b/build.rs
@@ -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(())
}