Skip to content

Commit 86558a7

Browse files
committed
Removed unneded breckets
1 parent 6f4c7de commit 86558a7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

build/stats.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/stats.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* stats.js r4
2+
* stats.js r3
33
* http://github.com/mrdoob/stats.js
44
*
55
* Released under MIT license:
@@ -89,7 +89,7 @@ var Stats = function () {
8989
context.fillStyle = '#101030';
9090
context.fillRect(canvas.width - 1, 0, 1, 30);
9191

92-
index = (Math.floor(30 - Math.min(30, (fps / 60) * 30)));
92+
index = Math.floor(30 - Math.min(30, (fps / 60) * 30));
9393

9494
context.fillStyle = '#80ffff';
9595
context.fillRect(canvas.width - 1, index, 1, 1);

0 commit comments

Comments
 (0)