diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2021-02-12 20:37:43 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-12 20:37:43 -0500 |
commit | 8454f52378b9410393262122c6920606e187e18f (patch) | |
tree | aee59787dc825fcb47ae06a404be33cf6521f774 /ext/mixed/js/audio-system.js | |
parent | f70464e5f36e342c345d38823d5a7e4712df8df0 (diff) |
Move more data files (#1373)
* Move deinflect.json
* Move button.mp3
* Move fonts
Diffstat (limited to 'ext/mixed/js/audio-system.js')
-rw-r--r-- | ext/mixed/js/audio-system.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/mixed/js/audio-system.js b/ext/mixed/js/audio-system.js index 0933d90e..cf63511f 100644 --- a/ext/mixed/js/audio-system.js +++ b/ext/mixed/js/audio-system.js @@ -35,7 +35,7 @@ class AudioSystem { getFallbackAudio() { if (this._fallbackAudio === null) { - this._fallbackAudio = new Audio('/mixed/mp3/button.mp3'); + this._fallbackAudio = new Audio('/data/audio/button.mp3'); } return this._fallbackAudio; } |