repositories
/
SugarCubes.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
922def9
)
Add a missing noStroke call
author
Mark Slee
<mcslee@Mark-Slees-MacBook-Pro.local>
Sat, 14 Sep 2013 01:33:25 +0000
(18:33 -0700)
committer
Mark Slee
<mcslee@Mark-Slees-MacBook-Pro.local>
Sat, 14 Sep 2013 01:33:25 +0000
(18:33 -0700)
_Overlay.pde
patch
|
blob
|
blame
|
history
diff --git
a/_Overlay.pde
b/_Overlay.pde
index b59cd5da1f455cb96149a84d921aa9d73e59f097..1b13b035f77d63dc6784ea18d9fc8150c03e483a 100644
(file)
--- 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.);