diff options
author | Torbjörn Andersson | 2010-07-20 08:56:53 +0000 |
---|---|---|
committer | Torbjörn Andersson | 2010-07-20 08:56:53 +0000 |
commit | 5b3f31feec43db358c1ad9bb38a7e602b5a90bb0 (patch) | |
tree | 94f52f360774f290c4df39bca8bf473a691ed94a /base | |
parent | 37aa8a7499e6aa1698beb7e241c42ba19475a83a (diff) | |
download | scummvm-rg350-5b3f31feec43db358c1ad9bb38a7e602b5a90bb0.tar.gz scummvm-rg350-5b3f31feec43db358c1ad9bb38a7e602b5a90bb0.tar.bz2 scummvm-rg350-5b3f31feec43db358c1ad9bb38a7e602b5a90bb0.zip |
General: Fixed building the SEQ MIDI driver
An #include was missing, causing the driver to never be built. Also fixed what
looked like a cut-and-paste error in generating the features string.
svn-id: r51056
Diffstat (limited to 'base')
-rw-r--r-- | base/version.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/base/version.cpp b/base/version.cpp index 0e7f62f80f..17058d4a03 100644 --- a/base/version.cpp +++ b/base/version.cpp @@ -86,7 +86,7 @@ const char *gScummVMFeatures = "" "ALSA " #endif -#ifdef USE_ALSA +#ifdef USE_SEQ_MIDI "SEQ " #endif |