From 3088a94c83037cecf87baf49c4e699ced8c26aa3 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Mon, 6 Nov 2023 13:14:26 +0100 Subject: Use birds.ogg. This also avoids a crash. --- scenes/game.scm | 6 ++---- 1 file 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*))))) -- cgit v1.2.3