mirror of
https://github.com/overte-org/overte.git
synced 2025-08-08 12:37:51 +02:00
Fix sound URLs
Three slashes needed for Windows.
This commit is contained in:
parent
a5b28660ad
commit
546442ff9a
1 changed files with 2 additions and 2 deletions
|
@ -11,8 +11,8 @@
|
||||||
//
|
//
|
||||||
|
|
||||||
// setup the local sound we're going to use
|
// setup the local sound we're going to use
|
||||||
var connectSound = SoundCache.getSound("file://" + Paths.resources + "sounds/hello.wav");
|
var connectSound = SoundCache.getSound("file:///" + Paths.resources + "sounds/hello.wav");
|
||||||
var disconnectSound = SoundCache.getSound("file://" + Paths.resources + "sounds/goodbye.wav");
|
var disconnectSound = SoundCache.getSound("file:///" + Paths.resources + "sounds/goodbye.wav");
|
||||||
|
|
||||||
// setup the options needed for that sound
|
// setup the options needed for that sound
|
||||||
var connectSoundOptions = {
|
var connectSoundOptions = {
|
||||||
|
|
Loading…
Reference in a new issue