From d1a501fafa3be691efcd2eb6aba63b42e144941e Mon Sep 17 00:00:00 2001 From: Josh Hofing Date: Fri, 18 Jan 2013 21:41:24 -0500 Subject: [PATCH] I had the line commented by accident. OOPS. --- src/Render.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Render.java b/src/Render.java index 536cc0e..5b83472 100644 --- a/src/Render.java +++ b/src/Render.java @@ -201,7 +201,7 @@ public class Render extends Canvas implements Runnable, MouseListener, } public void draw(int x, int y, int color) { - //if (_pixels[x + y * width] != color) + if (_pixels[x + y * width] != color) _pixels[x + y * width] = color; }