aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKostas Nakos2008-08-25 08:11:52 +0000
committerKostas Nakos2008-08-25 08:11:52 +0000
commit2b2bfc04c152aaa1ab4dab7662937f314e3af9f3 (patch)
tree8fa479498b1d05522bb7f7ad808641c3b6a53e2c
parent08f5ac5c4d14608f7ff497087825f8b80d2632b9 (diff)
downloadscummvm-rg350-2b2bfc04c152aaa1ab4dab7662937f314e3af9f3.tar.gz
scummvm-rg350-2b2bfc04c152aaa1ab4dab7662937f314e3af9f3.tar.bz2
scummvm-rg350-2b2bfc04c152aaa1ab4dab7662937f314e3af9f3.zip
patch 1984130: Add Tremolo info
svn-id: r34138
-rw-r--r--backends/platform/wince/Makefile2
-rw-r--r--base/version.cpp5
2 files changed, 6 insertions, 1 deletions
diff --git a/backends/platform/wince/Makefile b/backends/platform/wince/Makefile
index 89f1e18536..9f040bbed1 100644
--- a/backends/platform/wince/Makefile
+++ b/backends/platform/wince/Makefile
@@ -139,7 +139,7 @@ LIBS += -ltremorce
endif
ifdef USE_TREMOLO
-DEFINES += -DUSE_TREMOR -DUSE_VORBIS
+DEFINES += -DUSE_TREMOR -DUSE_VORBIS -DUSE_TREMOLO
INCLUDES += -Ilibs/include/tremolo
LIBS += -llibTremolo
endif
diff --git a/base/version.cpp b/base/version.cpp
index 8de96d0b78..3f41e4febe 100644
--- a/base/version.cpp
+++ b/base/version.cpp
@@ -62,7 +62,12 @@ const char *gScummVMVersionDate = SCUMMVM_VERSION " (" __DATE__ " " __TIME__ ")"
const char *gScummVMFullVersion = "ScummVM " SCUMMVM_VERSION " (" __DATE__ " " __TIME__ ")";
const char *gScummVMFeatures = ""
#ifdef USE_TREMOR
+#ifdef USE_TREMOLO
+ // libTremolo is used on WinCE for better ogg performance
+ "Tremolo "
+#else
"Tremor "
+#endif
#else
#ifdef USE_VORBIS
"Vorbis "