diff options
author | dhewg | 2011-04-22 21:43:42 +0200 |
---|---|---|
committer | dhewg | 2011-04-22 21:43:42 +0200 |
commit | e15f9cc0720c25a8afcf3e08ed8db56e7b5fe03c (patch) | |
tree | 68cec8a8f35a09f1a772b2adab32950969da3e39 | |
parent | 0ebf92ee384d00deb89bcd7c672e01ed43edf1cd (diff) | |
download | scummvm-rg350-e15f9cc0720c25a8afcf3e08ed8db56e7b5fe03c.tar.gz scummvm-rg350-e15f9cc0720c25a8afcf3e08ed8db56e7b5fe03c.tar.bz2 scummvm-rg350-e15f9cc0720c25a8afcf3e08ed8db56e7b5fe03c.zip |
AUDIO: Fix Tremolo support
Include by used library, not by backend
-rw-r--r-- | audio/decoders/vorbis.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/audio/decoders/vorbis.cpp b/audio/decoders/vorbis.cpp index dc37e852d3..a9bcb6167f 100644 --- a/audio/decoders/vorbis.cpp +++ b/audio/decoders/vorbis.cpp @@ -39,8 +39,8 @@ #include "audio/audiostream.h" #ifdef USE_TREMOR -#if defined(__GP32__) // custom libtremor locations -#include <ivorbisfile.h> +#ifdef USE_TREMOLO +#include <tremolo/ivorbisfile.h> #else #include <tremor/ivorbisfile.h> #endif |