diff options
-rw-r--r-- | scenes/game.scm | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/scenes/game.scm b/scenes/game.scm index 3e95fe5..a9235aa 100644 --- a/scenes/game.scm +++ b/scenes/game.scm @@ -48,7 +48,7 @@ (define-asset game-font (load-bitmap-font "assets/fonts/good_neighbors_starling.xml")) (define-asset music - (load-audio "assets/sounds/birds.mp3" #:mode 'stream)) + (load-audio "assets/sounds/birds.ogg" #:mode 'stream)) (define location (let ((positions @@ -259,6 +259,4 @@ map's positions layer." #:quit (lambda () (and *background-music* - ;; XXX This crashes so we just turn down the volume. - ;;(source-stop *background-music*) - (set-source-volume! *background-music* 0))))) + (source-stop *background-music*))))) |