From 3c1b5648aed0be45b303cea49e7537c98dd4a001 Mon Sep 17 00:00:00 2001 From: Jonathan Gray Date: Wed, 10 Aug 2005 06:16:26 +0000 Subject: Rest of the changes required for tremor to actually work. Based on patches against 0.7.1 by Jolan Luff. svn-id: r18641 --- scumm/sound.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'scumm/sound.cpp') diff --git a/scumm/sound.cpp b/scumm/sound.cpp index a3ea155c6f..00d9d48610 100644 --- a/scumm/sound.cpp +++ b/scumm/sound.cpp @@ -792,7 +792,7 @@ void Sound::startTalkSound(uint32 offset, uint32 b, int mode, Audio::SoundHandle #endif break; case kVorbisMode: - #ifdef USE_VORBIS + #if defined(USE_VORBIS) || defined(USE_TREMOR) assert(size > 0); input = makeVorbisStream(_sfxFile, size); #endif @@ -1124,7 +1124,7 @@ ScummFile *Sound::openSfxFile() { #ifdef USE_FLAC { "sof", kFlacMode }, #endif - #ifdef USE_VORBIS + #if defined(USE_VORBIS) || defined(USE_TREMOR) { "sog", kVorbisMode }, #endif #ifdef USE_MAD -- cgit v1.2.3