aboutsummaryrefslogtreecommitdiff
path: root/sound
diff options
context:
space:
mode:
authorWon Star2006-04-07 10:44:20 +0000
committerWon Star2006-04-07 10:44:20 +0000
commite1bbc61bb56311630da1d1d7c0906251f99e0d37 (patch)
treef548d4ecde49e8582bc32263daffd42d820a232d /sound
parent7cd565f884f10ebdbd48137d3de1a7823b41d05d (diff)
downloadscummvm-rg350-e1bbc61bb56311630da1d1d7c0906251f99e0d37.tar.gz
scummvm-rg350-e1bbc61bb56311630da1d1d7c0906251f99e0d37.tar.bz2
scummvm-rg350-e1bbc61bb56311630da1d1d7c0906251f99e0d37.zip
GP32 uses custom version of libtremor, so update header path.
svn-id: r21665
Diffstat (limited to 'sound')
-rw-r--r--sound/vorbis.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/sound/vorbis.cpp b/sound/vorbis.cpp
index 8ea2d33f94..7a8748b28b 100644
--- a/sound/vorbis.cpp
+++ b/sound/vorbis.cpp
@@ -31,7 +31,11 @@
#include "sound/audiocd.h"
#ifdef USE_TREMOR
+#ifdef __GP32__ // GP32 uses custom libtremor
+#include <ivorbisfile.h>
+#else
#include <tremor/ivorbisfile.h>
+#endif
#else
#include <vorbis/vorbisfile.h>
#endif