summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Thompson <dthompson@vistahigherlearning.com>2021-10-20 19:55:50 -0400
committerDavid Thompson <dthompson@vistahigherlearning.com>2021-10-20 19:55:50 -0400
commit2ea098590c71f240bf26a4174d50cdf69152d7b5 (patch)
treec3b8a6dda5ca3fc904214fa575b5fc7bbb6a5474
parentae60497f7722e01ccceebe799b5820717e048eb3 (diff)
Add music in ogg vorbis format.
-rw-r--r--assets/sounds/intro.oggbin0 -> 70124 bytes
-rw-r--r--assets/sounds/main.oggbin0 -> 613291 bytes
-rw-r--r--bonnie-bee/assets.scm4
3 files changed, 2 insertions, 2 deletions
diff --git a/assets/sounds/intro.ogg b/assets/sounds/intro.ogg
new file mode 100644
index 0000000..7f0c9c3
--- /dev/null
+++ b/assets/sounds/intro.ogg
Binary files differ
diff --git a/assets/sounds/main.ogg b/assets/sounds/main.ogg
new file mode 100644
index 0000000..6e47f27
--- /dev/null
+++ b/assets/sounds/main.ogg
Binary files differ
diff --git a/bonnie-bee/assets.scm b/bonnie-bee/assets.scm
index 6b92649..4b41835 100644
--- a/bonnie-bee/assets.scm
+++ b/bonnie-bee/assets.scm
@@ -46,5 +46,5 @@
(define-asset player-shoot-sound (load-audio (scope-datadir "assets/sounds/player-shoot.wav")))
(define-asset player-bomb-sound (load-audio (scope-datadir "assets/sounds/player-bomb.wav")))
(define-asset pollen-release-sound (load-audio (scope-datadir "assets/sounds/pollen-release.wav")))
-(define-asset intro-music (load-audio (scope-datadir "assets/sounds/intro.wav") #:mode 'stream))
-(define-asset main-music (load-audio (scope-datadir "assets/sounds/main.wav") #:mode 'stream))
+(define-asset intro-music (load-audio (scope-datadir "assets/sounds/intro.ogg") #:mode 'stream))
+(define-asset main-music (load-audio (scope-datadir "assets/sounds/main.ogg") #:mode 'stream))