Skip to content
This repository has been archived by the owner on Mar 17, 2024. It is now read-only.

Commit

Permalink
fix: remove log
Browse files Browse the repository at this point in the history
  • Loading branch information
Sceat committed Dec 1, 2023
1 parent 4cd944d commit 8473cee
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/modules/main_menu.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,7 @@ export default function () {

const audio_interval = setInterval(() => {
sound.context.resume()
if (sound.context.state === 'running') {
console.log('clearing interval')
clearInterval(audio_interval)
}
if (sound.context.state === 'running') clearInterval(audio_interval)
}, 500)

entity = Pool.guard.get()
Expand Down

0 comments on commit 8473cee

Please sign in to comment.