From 646cfc5b5e5de80e9324ef509feb61794f773bbf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim=20Vis=C3=A9e?= Date: Fri, 29 Dec 2017 22:19:46 +0100 Subject: [PATCH] Remove unused color --- src/main.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/main.rs b/src/main.rs index 4fb0df0..1b51271 100644 --- a/src/main.rs +++ b/src/main.rs @@ -191,9 +191,6 @@ impl Painter { // Get an RGB image let image = self.image.to_rgb(); - // Define the color to draw with - let color = Color::from(0, 255, 255); - // Loop through all the pixels, and set their color for x in 0..self.area.w { for y in 0..self.area.h {