diff options
author | Johannes Schickel | 2009-05-12 18:42:44 +0000 |
---|---|---|
committer | Johannes Schickel | 2009-05-12 18:42:44 +0000 |
commit | 4f0768b9096aab65961d697ca60d6e939f36eae2 (patch) | |
tree | cdd956f755a04eb23c140913a0e681ad6094b79b /engines | |
parent | 938db170f3af6eaade05fec36edc8011e155422f (diff) | |
download | scummvm-rg350-4f0768b9096aab65961d697ca60d6e939f36eae2.tar.gz scummvm-rg350-4f0768b9096aab65961d697ca60d6e939f36eae2.tar.bz2 scummvm-rg350-4f0768b9096aab65961d697ca60d6e939f36eae2.zip |
- Add support for selecting the OPL emulator being used (config entry: "opl_driver")
- Make MAME FM OPL the default emulator again
- Add GUI support for selecting the active OPL emulator
- Update themes
svn-id: r40496
Diffstat (limited to 'engines')
-rw-r--r-- | engines/sci/sfx/softseq/adlib.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sci/sfx/softseq/adlib.cpp b/engines/sci/sfx/softseq/adlib.cpp index 3be0ed86f3..92a04f065e 100644 --- a/engines/sci/sfx/softseq/adlib.cpp +++ b/engines/sci/sfx/softseq/adlib.cpp @@ -82,7 +82,7 @@ int MidiDriver_Adlib::open(bool isSCI0) { debug(3, "ADLIB: Starting driver in %s mode", (isSCI0 ? "SCI0" : "SCI1")); _isSCI0 = isSCI0; - _opl = OPL::OPL::create(isStereo() ? OPL::OPL::kDualOpl2 : OPL::OPL::kOpl2); + _opl = OPL::Config::create(isStereo() ? OPL::Config::kDualOpl2 : OPL::Config::kOpl2); if (!_opl) return -1; |