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); }