diff --git a/Tone/core/OfflineContext.js b/Tone/core/OfflineContext.js index 2961ff062..7a7ce200a 100644 --- a/Tone/core/OfflineContext.js +++ b/Tone/core/OfflineContext.js @@ -67,8 +67,8 @@ Tone.OfflineContext.prototype.render = function(){ while (this._duration - this._currentTime >= 0){ //invoke all the callbacks on that time this.emit("tick"); - //increment the clock - this._currentTime += this.blockTime; + //increment the clock in 5ms chunks + this._currentTime += 0.005; } return this._context.startRendering();