Add a missing noStroke call
authorMark Slee <mcslee@Mark-Slees-MacBook-Pro.local>
Sat, 14 Sep 2013 01:33:25 +0000 (18:33 -0700)
committerMark Slee <mcslee@Mark-Slees-MacBook-Pro.local>
Sat, 14 Sep 2013 01:33:25 +0000 (18:33 -0700)
_Overlay.pde

index b59cd5da1f455cb96149a84d921aa9d73e59f097..1b13b035f77d63dc6784ea18d9fc8150c03e483a 100644 (file)
@@ -86,6 +86,7 @@ abstract class OverlayUI {
   public void drawFPS() {
     textFont(titleFont);
     textAlign(LEFT);
+    noStroke();
     fill(#666666);
     int lPos = 4;
     String fps = "FPS: " + (((int)(frameRate * 10)) / 10.);