diff --git a/lib/sounds/ambient/Makefile b/lib/sounds/ambient/Makefile index c03c443a0d..9ee360cc02 100644 --- a/lib/sounds/ambient/Makefile +++ b/lib/sounds/ambient/Makefile @@ -4,7 +4,11 @@ include $(MKPATH)buildsys.mk DATA = store/credits.txt \ store/alchemy.ogg0 \ store/magic.ogg0 \ + store/meow.ogg \ + store/purr.ogg0 \ store/alchemy.mp3 \ - store/magic.mp3 + store/magic.mp3 \ + store/meow.mp3 \ + store/purr.mp3 PACKAGE = sounds/ambient diff --git a/src/client/snd-sdl.c b/src/client/snd-sdl.c index 07cd63d1b4..836b1f706e 100755 --- a/src/client/snd-sdl.c +++ b/src/client/snd-sdl.c @@ -53,8 +53,8 @@ enum static const struct sound_file_type supported_sound_files[] = { - {".ogg0", SDL_CHUNK_LOOP}, {".ogg", SDL_CHUNK}, + {".ogg0", SDL_CHUNK_LOOP}, {".mp3", SDL_MUSIC}, {"", SDL_NULL} };