diff --git a/examples/sounds.carp b/examples/sounds.carp index 92a5172b..71daa8f2 100644 --- a/examples/sounds.carp +++ b/examples/sounds.carp @@ -38,8 +38,8 @@ (println* "Nr of music decoders: " n) (for [i 0 n] (println* " - " &(str (Mixer.get-music-decoder i))))) - (let-do [music (Mixer.load-music (cstr "resources/Quarter.mp3"))] - (println* "Music " (if (null? music) "NULL..." "not null!")) + (let-do [music (Mixer.load-music (cstr "resources/song.mp3"))] + (println* "Music is " (if (null? music) "null." "not null.")) (println* "Play result: " (Mixer.play-music music -1)) ) (SDLApp.run-with-callbacks &app event-handler id SDLApp.default-draw 0) diff --git a/resources/song.aif b/resources/song.aif deleted file mode 100644 index b135b3ba..00000000 Binary files a/resources/song.aif and /dev/null differ diff --git a/resources/song.mp3 b/resources/song.mp3 new file mode 100644 index 00000000..74ef351e Binary files /dev/null and b/resources/song.mp3 differ