diff options
author | Matthew Hoops | 2011-04-11 21:37:44 -0400 |
---|---|---|
committer | Matthew Hoops | 2011-04-11 21:37:44 -0400 |
commit | 78f17f290a01ffb96693e5892bfcb6d4a1319b67 (patch) | |
tree | ff9bb94b73b7167b960371a314e98fdbfb4373cb | |
parent | 2e59957471e8ee0fa541811c3a50c68715d8798a (diff) | |
download | scummvm-rg350-78f17f290a01ffb96693e5892bfcb6d4a1319b67.tar.gz scummvm-rg350-78f17f290a01ffb96693e5892bfcb6d4a1319b67.tar.bz2 scummvm-rg350-78f17f290a01ffb96693e5892bfcb6d4a1319b67.zip |
BASE: Add AAC to the version string when compiled in
-rw-r--r-- | base/version.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/base/version.cpp b/base/version.cpp index 6967263f5c..a1f6d60fa0 100644 --- a/base/version.cpp +++ b/base/version.cpp @@ -115,5 +115,9 @@ const char *gScummVMFeatures = "" #ifdef USE_THEORADEC "Theora " #endif + +#ifdef USE_FAAD + "AAC " +#endif ; |