[Scummvm-cvs-logs] CVS: scummvm/base engine.cpp,1.47,1.48

Jonathan Gray khalek at users.sourceforge.net
Wed Aug 10 05:46:28 CEST 2005


Update of /cvsroot/scummvm/scummvm/base
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26483/base

Modified Files:
	engine.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: engine.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/base/engine.cpp,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -d -r1.47 -r1.48
--- engine.cpp	10 Aug 2005 06:16:25 -0000	1.47
+++ engine.cpp	10 Aug 2005 12:42:56 -0000	1.48
@@ -94,7 +94,7 @@
 	// If we can find a compressed audio track, then it should be ok even
 	// if it's running from CD.
 
-#if defined(USE_VORBIS) || defined(USE_TREMOR)
+#ifdef USE_VORBIS
 	if (Common::File::exists("track1.ogg"))
 		return;
 #endif





More information about the Scummvm-git-logs mailing list