diff options
Diffstat (limited to 'tape-deck.js')
-rw-r--r-- | tape-deck.js | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tape-deck.js b/tape-deck.js index 7d75abc..c5b8db7 100644 --- a/tape-deck.js +++ b/tape-deck.js @@ -1,7 +1,7 @@ const urlParams = new URLSearchParams(window.location.search); const currentSide = urlParams.get("side"); const sfx = new Audio("audio/tape-start.mp3"); -const tape = new Audio(`audio/2019-mix-side-${currentSide}.mp3`); +const tape = new Audio(`audio/2019-mix-side-${currentSide}.ogg`); let display = document.getElementById("notes"); let currentTrackIndex = 0; @@ -42,4 +42,3 @@ fetch(`side${currentSide}.json`) display.textContent = currentTrack.title; }); }); - |