Prevent accidental MT-32 initialization for PC speaker output, when "native_mt32" is set to true.
svn-id: r40940
This commit is contained in:
parent
2bcf5c0552
commit
ac6c99eff0
1 changed files with 3 additions and 3 deletions
|
@ -121,10 +121,10 @@ Common::Error KyraEngine_v1::init() {
|
|||
} else {
|
||||
Sound::kType type;
|
||||
|
||||
if (midiDriver == MD_MT32 || ConfMan.getBool("native_mt32"))
|
||||
type = Sound::kMidiMT32;
|
||||
else if (midiDriver == MD_PCSPK)
|
||||
if (midiDriver == MD_PCSPK)
|
||||
type = Sound::kPCSpkr;
|
||||
else if (midiDriver == MD_MT32 || ConfMan.getBool("native_mt32"))
|
||||
type = Sound::kMidiMT32;
|
||||
else
|
||||
type = Sound::kMidiGM;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue