[Scummvm-cvs-logs] CVS: scummvm/base engine.cpp,1.46,1.47 main.cpp,1.88,1.89
Jonathan Gray
khalek at users.sourceforge.net
Tue Aug 9 23:17:37 CEST 2005
Update of /cvsroot/scummvm/scummvm/base
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19296/base
Modified Files:
engine.cpp main.cpp
Log Message:
Rest of the changes required for tremor to actually work.
Based on patches against 0.7.1 by Jolan Luff.
Index: engine.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/base/engine.cpp,v
retrieving revision 1.46
retrieving revision 1.47
diff -u -d -r1.46 -r1.47
--- engine.cpp 30 Jul 2005 21:10:57 -0000 1.46
+++ engine.cpp 10 Aug 2005 06:16:25 -0000 1.47
@@ -94,7 +94,7 @@
// If we can find a compressed audio track, then it should be ok even
// if it's running from CD.
-#ifdef USE_VORBIS
+#if defined(USE_VORBIS) || defined(USE_TREMOR)
if (Common::File::exists("track1.ogg"))
return;
#endif
Index: main.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/base/main.cpp,v
retrieving revision 1.88
retrieving revision 1.89
diff -u -d -r1.88 -r1.89
--- main.cpp 30 Jul 2005 21:10:57 -0000 1.88
+++ main.cpp 10 Aug 2005 06:16:25 -0000 1.89
@@ -97,6 +97,9 @@
const char *gScummVMBuildDate = __DATE__ " " __TIME__;
const char *gScummVMFullVersion = "ScummVM 0.8.0CVS (" __DATE__ " " __TIME__ ")";
const char *gScummVMFeatures = ""
+#ifdef USE_TREMOR
+ "Tremor "
+#endif
#ifdef USE_VORBIS
"Vorbis "
#endif
More information about the Scummvm-git-logs
mailing list