This commit is contained in:
tamat
2020-05-24 00:02:32 +02:00
parent e34b079908
commit 0718641bc7
2 changed files with 4 additions and 4 deletions

View File

@@ -786,7 +786,7 @@
window.requestAnimationFrame(on_frame);
if(that.onBeforeStep)
that.onBeforeStep();
that.runStep(1, !this.catch_errors);
that.runStep(1, !that.catch_errors);
if(that.onAfterStep)
that.onAfterStep();
}
@@ -797,7 +797,7 @@
//execute
if(that.onBeforeStep)
that.onBeforeStep();
that.runStep(1, !this.catch_errors);
that.runStep(1, !that.catch_errors);
if(that.onAfterStep)
that.onAfterStep();
}, interval);