Skip to content
Snippets Groups Projects
Verified Commit 87d7dee6 authored by Mar0xy's avatar Mar0xy
Browse files

chore: lint

parent c7e4bc63
No related branches found
No related tags found
No related merge requests found
......@@ -90,8 +90,8 @@ player.value.load(url).then((result) => {
player.value.play(buffer);
progress.value!.max = player.value.duration();
display();
} catch (e) {
console.warn(e);
} catch (err) {
console.warn(err);
}
player.value.stop();
}).catch((error) => {
......@@ -128,8 +128,8 @@ function stop(noDisplayUpdate = false) {
try {
player.value.play(buffer);
display();
} catch (e) {
console.warn(e);
} catch (err) {
console.warn(err);
}
}
player.value.stop();
......
/* global libopenmpt UTF8ToString writeAsciiToMemory */
/* eslint-disable */
const ChiptuneAudioContext = window.AudioContext || window.webkitAudioContext;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment