Fix sound URLs

Three slashes needed for Windows.
This commit is contained in:
David Rowe 2015-06-12 12:32:40 -07:00
parent a5b28660ad
commit 546442ff9a

View file

@ -11,8 +11,8 @@
//
// setup the local sound we're going to use
var connectSound = SoundCache.getSound("file://" + Paths.resources + "sounds/hello.wav");
var disconnectSound = SoundCache.getSound("file://" + Paths.resources + "sounds/goodbye.wav");
var connectSound = SoundCache.getSound("file:///" + Paths.resources + "sounds/hello.wav");
var disconnectSound = SoundCache.getSound("file:///" + Paths.resources + "sounds/goodbye.wav");
// setup the options needed for that sound
var connectSoundOptions = {