[Scummvm-cvs-logs] CVS: scummvm/scumm sound.cpp,1.470,1.471
Jonathan Gray
khalek at users.sourceforge.net
Tue Aug 9 23:17:52 CEST 2005
- Previous message: [Scummvm-cvs-logs] CVS: scummvm/queen sound.cpp,1.57,1.58 sound.h,1.30,1.31
- Next message: [Scummvm-cvs-logs] CVS: scummvm/sound audiocd.cpp,1.22,1.23 audiostream.cpp,1.75,1.76 vorbis.cpp,1.27,1.28 vorbis.h,1.11,1.12
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /cvsroot/scummvm/scummvm/scumm
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19296/scumm
Modified Files:
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: sound.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/sound.cpp,v
retrieving revision 1.470
retrieving revision 1.471
diff -u -d -r1.470 -r1.471
--- sound.cpp 30 Jul 2005 21:11:30 -0000 1.470
+++ sound.cpp 10 Aug 2005 06:16:25 -0000 1.471
@@ -792,7 +792,7 @@
#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 @@
#ifdef USE_FLAC
{ "sof", kFlacMode },
#endif
- #ifdef USE_VORBIS
+ #if defined(USE_VORBIS) || defined(USE_TREMOR)
{ "sog", kVorbisMode },
#endif
#ifdef USE_MAD
- Previous message: [Scummvm-cvs-logs] CVS: scummvm/queen sound.cpp,1.57,1.58 sound.h,1.30,1.31
- Next message: [Scummvm-cvs-logs] CVS: scummvm/sound audiocd.cpp,1.22,1.23 audiostream.cpp,1.75,1.76 vorbis.cpp,1.27,1.28 vorbis.h,1.11,1.12
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the Scummvm-git-logs
mailing list