From 9367f608f9ba67b0031a7f08b58cc6cc843b8c79 Mon Sep 17 00:00:00 2001 From: memdmp Date: Thu, 9 Jan 2025 17:53:34 +0100 Subject: fix: fmt --- build.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'build.rs') diff --git a/build.rs b/build.rs index 2ba8b9c..a6a53d2 100644 --- a/build.rs +++ b/build.rs @@ -50,7 +50,7 @@ fn render_character(font: &Font, scale: Scale, character: char) -> Vec { .draw(|gx: u32, gy: u32, v| { let bit = (v * 255.0) as u8; if gx < width { - define_item(&mut image,(2 + (gy * width) + gx) as usize, bit); + define_item(&mut image, (2 + (gy * width) + gx) as usize, bit); } }); image -- cgit v1.2.3