diff options
author | Colin Snover | 2017-07-07 11:12:40 -0500 |
---|---|---|
committer | Colin Snover | 2017-07-07 13:25:02 -0500 |
commit | f6dd8ad290d25874c7c9ae31d13757a9ee05ae57 (patch) | |
tree | e8010dd9060b7ab27af345e366c5af0abf9028cb | |
parent | a9a3089aa5227d7d0f18f51dc6a9637f20a542df (diff) | |
download | scummvm-rg350-f6dd8ad290d25874c7c9ae31d13757a9ee05ae57.tar.gz scummvm-rg350-f6dd8ad290d25874c7c9ae31d13757a9ee05ae57.tar.bz2 scummvm-rg350-f6dd8ad290d25874c7c9ae31d13757a9ee05ae57.zip |
SCI: Fix audio_list debug command engine version info
-rw-r--r-- | engines/sci/console.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sci/console.cpp b/engines/sci/console.cpp index 4508854d10..bfa9f45d5b 100644 --- a/engines/sci/console.cpp +++ b/engines/sci/console.cpp @@ -423,7 +423,7 @@ bool Console::cmdHelp(int argc, const char **argv) { debugPrintf(" sfx01_track - Dumps a track of a SCI01 song\n"); debugPrintf(" show_instruments - Shows the instruments of a specific song, or all songs\n"); debugPrintf(" map_instrument - Dynamically maps an MT-32 instrument to a GM instrument\n"); - debugPrintf(" audio_list - Lists currently active digital audio samples (SCI2.1+)\n"); + debugPrintf(" audio_list - Lists currently active digital audio samples (SCI2+)\n"); debugPrintf("\n"); debugPrintf("Script:\n"); debugPrintf(" addresses - Provides information on how to pass addresses\n"); |