From 6eeceb0261b4b71b2f3aaea9c3bb9a224acbdd4a Mon Sep 17 00:00:00 2001 From: Nils Kneuper Date: Thu, 2 Aug 2007 11:15:51 +0000 Subject: [PATCH] got the check for OGG support in sdl-mixer back into configure --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 560e1ce39b6..4c98dbd9142 100644 --- a/configure.ac +++ b/configure.ac @@ -790,7 +790,7 @@ LIBS=$OLD_LIBS ####################################################################### if test "x$lite" = "xno"; then - if test -e "music/main_menu.ogg" ; then + if test -e "data/core/music/main_menu.ogg" ; then AC_LANG([C]) AC_MSG_CHECKING([for OGG support in SDL_mixer]) @@ -810,7 +810,7 @@ if test "x$lite" = "xno"; then int main(int argc, char **argv) { - Mix_Music* music = Mix_LoadMUS("music/main_menu.ogg"); + Mix_Music* music = Mix_LoadMUS("data/core/music/main_menu.ogg"); if (music == NULL) exit(1); exit(0);