mirror of
https://github.com/Tonejs/Tone.js
synced 2024-11-16 00:27:58 +00:00
parent
45e4bf11c8
commit
7818531e0f
1 changed files with 2 additions and 2 deletions
|
@ -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();
|
||||
|
|
Loading…
Reference in a new issue