From a43de9ea5d4907c8ee2a3aff9e35258324f86236 Mon Sep 17 00:00:00 2001 From: Antoine Reversat Date: Wed, 6 May 2026 17:04:19 -0400 Subject: [PATCH] Run cargo fmt --- drivers/graphics/console-draw/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/graphics/console-draw/src/lib.rs b/drivers/graphics/console-draw/src/lib.rs index 40b9a0d64c..07a04ad8e9 100644 --- a/drivers/graphics/console-draw/src/lib.rs +++ b/drivers/graphics/console-draw/src/lib.rs @@ -297,7 +297,7 @@ impl TextScreen { Self::rect(map, x * 8, y * 16, w * 8, h * 16, color.as_rgb()); for y2 in y..y + h { line_changed(y2); - } + } for x2 in x..x + w { col_changed(x2); }