aboutsummaryrefslogtreecommitdiff
path: root/simon/simon.cpp
diff options
context:
space:
mode:
authorJamieson Christian2003-07-14 08:29:17 +0000
committerJamieson Christian2003-07-14 08:29:17 +0000
commit74d3d914a93dd3914e74aed278eb8f9383f51783 (patch)
treebc86dd13b03b14252c274e31b3418b9563188773 /simon/simon.cpp
parent085d14a8c81b1324cba45e301fa44046f4daf29b (diff)
downloadscummvm-rg350-74d3d914a93dd3914e74aed278eb8f9383f51783.tar.gz
scummvm-rg350-74d3d914a93dd3914e74aed278eb8f9383f51783.tar.bz2
scummvm-rg350-74d3d914a93dd3914e74aed278eb8f9383f51783.zip
Feature [770161] SIMON: Remap instruments to GM
Apparently Simon 1 (all versions) uses MT32 instruments, so now we map them to GM *unless* the --native-mt32 option was specified. svn-id: r9001
Diffstat (limited to 'simon/simon.cpp')
-rw-r--r--simon/simon.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/simon/simon.cpp b/simon/simon.cpp
index 8e0ebba88c..cb8d6955bd 100644
--- a/simon/simon.cpp
+++ b/simon/simon.cpp
@@ -434,6 +434,7 @@ SimonEngine::SimonEngine(GameDetector *detector, OSystem *syst)
// Setup midi driver
if (!driver)
driver = MidiDriver_ADLIB_create();
+ midi.mapMT32toGM (!(_game & GF_SIMON2) && !detector->_native_mt32)
midi.set_driver(driver);
int ret = midi.open();
if (ret)