From 59b918da51d10d37e8139e4b53c3f6fdbc5ecc32 Mon Sep 17 00:00:00 2001 From: lengstrom Date: Tue, 26 Aug 2014 14:05:28 -0400 Subject: [PATCH] increased speed on mobile slightly --- js_v8/wavegen.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js_v8/wavegen.js b/js_v8/wavegen.js index 3bc35da..6cf99f9 100644 --- a/js_v8/wavegen.js +++ b/js_v8/wavegen.js @@ -26,7 +26,7 @@ function waveGen(hex) { this.dt = 0; this.update = function() { this.currentFunction(); - this.dt = (settings.platform == 'mobile' ? 12.5 : 16.6667) * MainHex.ct; + this.dt = (settings.platform == 'mobile' ? 14 : 16.6667) * MainHex.ct; this.computeDifficulty(); if ((this.dt - this.lastGen) * settings.creationSpeedModifier > this.nextGen) { if (this.nextGen > 600) {