[Scummvm-cvs-logs] CVS: scummvm/scumm sound.cpp,1.471,1.472
Jonathan Gray
khalek at users.sourceforge.net
Wed Aug 10 05:46:27 CEST 2005
- Previous message: [Scummvm-cvs-logs] CVS: scummvm configure,1.127,1.128
- Next message: [Scummvm-cvs-logs] CVS: scummvm/sword1 animation.cpp,1.41,1.42 music.cpp,1.47,1.48 sound.cpp,1.48,1.49 sword1.cpp,1.91,1.92
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /cvsroot/scummvm/scummvm/scumm
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26483/scumm
Modified Files:
sound.cpp
Log Message:
Don't explicity check for tremor and vorbis everywhere and
require both USE_TREMOR and USE_VORBIS to be defined when
using tremor.
Index: sound.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/sound.cpp,v
retrieving revision 1.471
retrieving revision 1.472
diff -u -d -r1.471 -r1.472
--- sound.cpp 10 Aug 2005 06:16:25 -0000 1.471
+++ sound.cpp 10 Aug 2005 12:42:56 -0000 1.472
@@ -792,7 +792,7 @@
#endif
break;
case kVorbisMode:
- #if defined(USE_VORBIS) || defined(USE_TREMOR)
+ #ifdef USE_VORBIS
assert(size > 0);
input = makeVorbisStream(_sfxFile, size);
#endif
@@ -1124,7 +1124,7 @@
#ifdef USE_FLAC
{ "sof", kFlacMode },
#endif
- #if defined(USE_VORBIS) || defined(USE_TREMOR)
+ #ifdef USE_VORBIS
{ "sog", kVorbisMode },
#endif
#ifdef USE_MAD
- Previous message: [Scummvm-cvs-logs] CVS: scummvm configure,1.127,1.128
- Next message: [Scummvm-cvs-logs] CVS: scummvm/sword1 animation.cpp,1.41,1.42 music.cpp,1.47,1.48 sound.cpp,1.48,1.49 sword1.cpp,1.91,1.92
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the Scummvm-git-logs
mailing list