Add a missing noStroke call
[SugarCubes.git] / _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.);