From 4a5933415799fd7e97b3602585b1cc402a96fc9e Mon Sep 17 00:00:00 2001 From: benfry Date: Mon, 20 Sep 2004 23:12:52 +0000 Subject: [PATCH] a couple missed lines --- processing/core/PApplet.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/processing/core/PApplet.java b/processing/core/PApplet.java index b68083f43..0ab411fa5 100644 --- a/processing/core/PApplet.java +++ b/processing/core/PApplet.java @@ -113,7 +113,7 @@ public class PApplet extends Applet // used for mouse tracking so that pmouseX doesn't get // updated too many times while still inside the loop // instead, it's updated only before/after the loop() - int qmouseX, qmouseY; + //int qmouseX, qmouseY; // queue for whether to call the simple mouseDragged or // mouseMoved functions. these are called after beginFrame @@ -479,8 +479,8 @@ public class PApplet extends Applet public void nextFrame() { - mouseX = qmouseX; // only if updated? - mouseY = qmouseY; + //mouseX = qmouseX; // only if updated? + //mouseY = qmouseY; if (fpsTarget != 0) framerate_delay();