Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
Signed-off-by: FurryR <[email protected]>
  • Loading branch information
FurryR committed Oct 26, 2024
1 parent 75b8ee7 commit f644579
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/engine/sequencer.js
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ class Sequencer {

// tw: Detect timer here so the sequencer won't break when FPS is greater than 1000
// and performance.now() is not available.
if (this.timer.timeElapsed() < WORK_TIME) break;
if (this.timer.timeElapsed() >= WORK_TIME) break;
}

this.activeThread = null;
Expand Down

0 comments on commit f644579

Please sign in to comment.