aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/console.cpp
diff options
context:
space:
mode:
authorFilippos Karapetis2010-10-28 13:00:21 +0000
committerFilippos Karapetis2010-10-28 13:00:21 +0000
commita7b5133903ef4a50a52b5d6ecd5264ec6e69b62c (patch)
treea2e6cef6408687fe657b1a70a99d813b964082ed /engines/sci/console.cpp
parent3a4647dc50aebfa89dd495d12573198b46b78893 (diff)
downloadscummvm-rg350-a7b5133903ef4a50a52b5d6ecd5264ec6e69b62c.tar.gz
scummvm-rg350-a7b5133903ef4a50a52b5d6ecd5264ec6e69b62c.tar.bz2
scummvm-rg350-a7b5133903ef4a50a52b5d6ecd5264ec6e69b62c.zip
SCI: Improved the description of the "map_instrument" console command a bit. Also, the dynamic mappings are now checked before the static ones
svn-id: r53903
Diffstat (limited to 'engines/sci/console.cpp')
-rw-r--r--engines/sci/console.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/engines/sci/console.cpp b/engines/sci/console.cpp
index 40e3aae9a7..8ad144e1f8 100644
--- a/engines/sci/console.cpp
+++ b/engines/sci/console.cpp
@@ -1046,8 +1046,12 @@ bool Console::cmdMapInstrument(int argc, const char **argv) {
if (argc != 4) {
DebugPrintf("Maps an MT-32 custom instrument to a GM instrument on the fly\n\n");
DebugPrintf("Usage %s <MT-32 instrument name> <GM instrument> <GM rhythm key>\n", argv[0]);
- DebugPrintf("Each MT-32 instrument is mapped to either a GM instrument, or a GM rhythm key\n");
+ DebugPrintf("Each MT-32 instrument is always 10 characters and is mapped to either a GM instrument, or a GM rhythm key\n");
+ DebugPrintf("A value of 255 (0xff) signifies an unmapped instrument\n");
DebugPrintf("Please replace the spaces in the instrument name with underscores (\"_\"). They'll be converted to spaces afterwards\n\n");
+ DebugPrintf("Example: %s test_0__XX 1 255\n", argv[0]);
+ DebugPrintf("The above example will map the MT-32 instument \"test 0 XX\" to GM instrument 1\n\n");
+ Example
} else {
if (Mt32dynamicMappings != NULL) {
Mt32ToGmMap newMapping;