From 901660321dcb92de046a696c841f1f20d41d6a00 Mon Sep 17 00:00:00 2001 From: Mark Slee Date: Fri, 13 Sep 2013 18:33:25 -0700 Subject: [PATCH] Add a missing noStroke call --- _Overlay.pde | 1 + 1 file changed, 1 insertion(+) 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.); -- 2.34.1