Remove unused color

This commit is contained in:
Tim Visée
2017-12-29 22:19:46 +01:00
parent 88945b639d
commit 646cfc5b5e

View File

@@ -191,9 +191,6 @@ impl Painter {
// Get an RGB image // Get an RGB image
let image = self.image.to_rgb(); 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 // Loop through all the pixels, and set their color
for x in 0..self.area.w { for x in 0..self.area.w {
for y in 0..self.area.h { for y in 0..self.area.h {