diff options
| author | Jules Laplace <jules@okfoc.us> | 2016-05-12 00:28:48 -0400 |
|---|---|---|
| committer | Jules Laplace <jules@okfoc.us> | 2016-05-12 00:28:48 -0400 |
| commit | dbad58d6ed010d7b8690fe34caef96f191d3f744 (patch) | |
| tree | 684b64ef729d6517b45fe985316608204ffad282 /js/ui | |
| parent | 8922cd727e563a138b5a125d9d787bc86e38f50c (diff) | |
as fast as possible
Diffstat (limited to 'js/ui')
| -rw-r--r-- | js/ui/nopaint.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/js/ui/nopaint.js b/js/ui/nopaint.js index 7188e91..2ea1646 100644 --- a/js/ui/nopaint.js +++ b/js/ui/nopaint.js @@ -34,7 +34,7 @@ var nopaint = (function(){ var nopaint = {} nopaint.delay = nopaint.normal_delay = 100 - nopaint.turbo_delay = 10 + nopaint.turbo_delay = 0 nopaint.tool = null nopaint.tools = {} nopaint.keys = [] @@ -153,7 +153,7 @@ var nopaint = (function(){ }, play: function(){ clearTimeout(this.timeout) - var delay = nopaint.is_turbo ? randrange(300, 700) : randrange(400, 800) + var delay = nopaint.is_turbo ? randrange(300, 600) : randrange(400, 800) this.timeout = setTimeout(this.play.bind(this), delay) this.check_fitness() this.step += 1 |
