diff options
Diffstat (limited to 'base/version.cpp')
-rw-r--r-- | base/version.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/base/version.cpp b/base/version.cpp index 6a670c1a40..c91698cba9 100644 --- a/base/version.cpp +++ b/base/version.cpp @@ -60,6 +60,11 @@ const char *gScummVMBuildDate = __DATE__ " " __TIME__; const char *gScummVMVersionDate = SCUMMVM_VERSION " (" __DATE__ " " __TIME__ ")"; const char *gScummVMFullVersion = "ScummVM " SCUMMVM_VERSION " (" __DATE__ " " __TIME__ ")"; const char *gScummVMFeatures = "" +#ifdef TAINTED_BUILD + // TAINTED means the build contains engines/subengines not enabled by default + "TAINTED " +#endif + #ifdef USE_TREMOR #ifdef USE_TREMOLO // libTremolo is used on WinCE for better ogg performance @@ -112,5 +117,9 @@ const char *gScummVMFeatures = "" #ifdef USE_THEORADEC "Theora " #endif + +#ifdef USE_FAAD + "AAC " +#endif ; |