increased speed on mobile slightly

This commit is contained in:
lengstrom 2014-08-26 14:05:28 -04:00
parent 0d87a5973a
commit 59b918da51

View file

@ -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) {