diff options
-rw-r--r-- | flipdot/flipdot.pde | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/flipdot/flipdot.pde b/flipdot/flipdot.pde index 6738128..e2028db 100644 --- a/flipdot/flipdot.pde +++ b/flipdot/flipdot.pde @@ -25,8 +25,6 @@ void draw() { x = (mouseX - (mouseX % scale)) / scale; y = (mouseY - (mouseY % scale))/ scale; - println("x, y: " + x + " " + y); - if( mousePressed && (x < w && x >= 0) && (y < h && y >= 0) ) { |