]> git.jsancho.org Git - lugaru.git/commitdiff
Disable AL_EXT_vorbis, as untested.
authorRyan C. Gordon <icculus@icculus.org>
Fri, 12 Aug 2005 07:43:12 +0000 (07:43 +0000)
committerRyan C. Gordon <icculus@icculus.org>
Fri, 12 Aug 2005 07:43:12 +0000 (07:43 +0000)
Source/openal_wrapper.cpp

index 379b5b2db920dd559259e000c239725fb279e44c..dc40cac65796a124d03992cac470316abd47733c 100644 (file)
@@ -313,6 +313,7 @@ static void *decode_to_pcm(const char *_fname, ALenum &format, ALsizei &size, AL
 
     ALubyte *retval = NULL;
 
+    #if 0  // untested, so disable this!
     // Can we just feed it to the AL compressed?
     if (alIsExtensionPresent((const ALubyte *) "AL_EXT_vorbis"))
     {
@@ -331,6 +332,7 @@ static void *decode_to_pcm(const char *_fname, ALenum &format, ALsizei &size, AL
         }
         return retval;
     }
+    #endif
 
     // Uncompress and feed to the AL.
     OggVorbis_File vf;