diff options
| author | Filippos Karapetis | 2010-10-28 18:45:11 +0000 | 
|---|---|---|
| committer | Filippos Karapetis | 2010-10-28 18:45:11 +0000 | 
| commit | b3e42b94c916b3c0bb51bc78cb34cd25fbcbd65c (patch) | |
| tree | e1a999f385b05667d24d9ba0e4862d33592593d8 | |
| parent | 27c52434badedc7c94f01eba8d3eb24495baabc5 (diff) | |
| download | scummvm-rg350-b3e42b94c916b3c0bb51bc78cb34cd25fbcbd65c.tar.gz scummvm-rg350-b3e42b94c916b3c0bb51bc78cb34cd25fbcbd65c.tar.bz2 scummvm-rg350-b3e42b94c916b3c0bb51bc78cb34cd25fbcbd65c.zip | |
SCI: Added some missing GM mappings for MT-32 instruments:
- MT-32 Castanets -> GM Claves
- MT-32 OneNoteJam -> GM Celesta
- MT-32 JungleTune -> GM Pan Flute
For PQ3 (from rev #53902, not in the commit description):
- MT-32 Warm Pad -> GM Pad 2 (warm)
Thanks to digitall and waltervn for their help with these
svn-id: r53907
| -rw-r--r-- | engines/sci/sound/drivers/map-mt32-to-gm.h | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/engines/sci/sound/drivers/map-mt32-to-gm.h b/engines/sci/sound/drivers/map-mt32-to-gm.h index 89d87a5077..f7a6256ba4 100644 --- a/engines/sci/sound/drivers/map-mt32-to-gm.h +++ b/engines/sci/sound/drivers/map-mt32-to-gm.h @@ -167,14 +167,14 @@ static const Mt32ToGmMap Mt32PresetTimbreMaps[] = {  	/*117*/  {"Taiko     ", 116, MIDI_UNMAPPED},  	/*118*/  {"Taiko Rim ", 118, MIDI_UNMAPPED},  	/*119*/  {"Cymbal    ", MIDI_MAPPED_TO_RHYTHM, 51}, -	/*120*/  {"Castanets ", MIDI_UNMAPPED, MIDI_UNMAPPED}, +	/*120*/  {"Castanets ", MIDI_MAPPED_TO_RHYTHM, 75},	// approximation  	/*121*/  {"Triangle  ", 112, MIDI_UNMAPPED},  	/*122*/  {"Orche Hit ", 55, MIDI_UNMAPPED},  	/*123*/  {"Telephone ", 124, MIDI_UNMAPPED},  	/*124*/  {"Bird Tweet", 123, MIDI_UNMAPPED}, -	/*125*/  {"OneNoteJam", MIDI_UNMAPPED, MIDI_UNMAPPED}, // ? +	/*125*/  {"OneNoteJam", 8, MIDI_UNMAPPED}, // approximation  	/*126*/  {"WaterBells", 98, MIDI_UNMAPPED}, -	/*127*/  {"JungleTune", MIDI_UNMAPPED, MIDI_UNMAPPED} // ? +	/*127*/  {"JungleTune", 75, MIDI_UNMAPPED} // approximation  };  static const Mt32ToGmMap Mt32RhythmTimbreMaps[] = { | 
