From: Mark Slee Date: Sat, 14 Sep 2013 01:33:25 +0000 (-0700) Subject: Add a missing noStroke call X-Git-Url: https://git.piment-noir.org/?a=commitdiff_plain;ds=sidebyside;h=901660321dcb92de046a696c841f1f20d41d6a00;p=SugarCubes.git Add a missing noStroke call --- diff --git a/_Overlay.pde b/_Overlay.pde index b59cd5d..1b13b03 100644 --- a/_Overlay.pde +++ b/_Overlay.pde @@ -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.);