[Scummvm-cvs-logs] CVS: scummvm/sword2/driver d_sound.cpp,1.153,1.154

Jonathan Gray khalek at users.sourceforge.net
Tue Aug 9 23:17:58 CEST 2005


Update of /cvsroot/scummvm/scummvm/sword2/driver
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19296/sword2/driver

Modified Files:
	d_sound.cpp 
Log Message:
Rest of the changes required for tremor to actually work.

Based on patches against 0.7.1 by Jolan Luff.


Index: d_sound.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sword2/driver/d_sound.cpp,v
retrieving revision 1.153
retrieving revision 1.154
diff -u -d -r1.153 -r1.154
--- d_sound.cpp	30 Jul 2005 21:11:47 -0000	1.153
+++ d_sound.cpp	10 Aug 2005 06:16:26 -0000	1.154
@@ -51,7 +51,7 @@
 	#ifdef USE_MAD
 			{ "cl3", kMP3Mode },
 	#endif
-	#ifdef USE_VORBIS
+	#if defined(USE_VORBIS) || defined(USE_TREMOR)
 			{ "clg", kVorbisMode },
 	#endif
 	#ifdef USE_FLAC
@@ -135,7 +135,7 @@
 	case kMP3Mode:
 		return makeMP3Stream(fh->file, enc_len);
 #endif
-#ifdef USE_VORBIS
+#if defined(USE_VORBIS) || defined(USE_TREMOR)
 	case kVorbisMode:
 		return makeVorbisStream(fh->file, enc_len);
 #endif





More information about the Scummvm-git-logs mailing list