We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 75b8ee7 commit f644579Copy full SHA for f644579
src/engine/sequencer.js
@@ -166,7 +166,7 @@ class Sequencer {
166
167
// tw: Detect timer here so the sequencer won't break when FPS is greater than 1000
168
// and performance.now() is not available.
169
- if (this.timer.timeElapsed() < WORK_TIME) break;
+ if (this.timer.timeElapsed() >= WORK_TIME) break;
170
}
171
172
this.activeThread = null;
0 commit comments