Fix #56 (remove duplicated music)

This commit is contained in:
Alex Clay 2018-05-15 15:27:28 -04:00 committed by GitHub
parent e3f386d971
commit 6b460fe8f8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -54,6 +54,7 @@ subscribe("prepreload/done", function(){
subscribe("START", function(){
// Music
SOUNDS.bg_music.stop();
SOUNDS.bg_music.volume(0.5);
SOUNDS.bg_music.loop(true);
SOUNDS.bg_music.play();
@ -74,4 +75,4 @@ subscribe("START", function(){
// Introduction
slideshow.next();
});
});