aboutsummaryrefslogtreecommitdiff
path: root/engines/sci
diff options
context:
space:
mode:
authorFilippos Karapetis2010-01-24 11:54:55 +0000
committerFilippos Karapetis2010-01-24 11:54:55 +0000
commitbab94d58ba2a91c647c17a88e4ca3928ebe838b4 (patch)
treecbfb3ba91996a4780b5ad1bfd20ce638170f0fb7 /engines/sci
parent135294068848fbe476658af4765f85fee75fa57f (diff)
downloadscummvm-rg350-bab94d58ba2a91c647c17a88e4ca3928ebe838b4.tar.gz
scummvm-rg350-bab94d58ba2a91c647c17a88e4ca3928ebe838b4.tar.bz2
scummvm-rg350-bab94d58ba2a91c647c17a88e4ca3928ebe838b4.zip
Added missing documentation for the new music related commands introduced in rev. 47475
svn-id: r47497
Diffstat (limited to 'engines/sci')
-rw-r--r--engines/sci/console.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/engines/sci/console.cpp b/engines/sci/console.cpp
index 1e472839af..8c25561391 100644
--- a/engines/sci/console.cpp
+++ b/engines/sci/console.cpp
@@ -335,10 +335,13 @@ bool Console::cmdHelp(int argc, const char **argv) {
DebugPrintf("\n");
DebugPrintf("Music/SFX:\n");
DebugPrintf(" songlib - Shows the song library\n");
+ DebugPrintf(" songinfo - Shows information about a specified song in the song library\n");
+ DebugPrintf(" togglesound - Starts/stops a sound in the song library\n");
+ DebugPrintf(" stopallsounds - Stops all sounds in the playlist\n");
+ DebugPrintf(" startsound - Starts the specified sound resource, replacing the first song in the song library\n");
DebugPrintf(" is_sample - Shows information on a given sound resource, if it's a PCM sample\n");
DebugPrintf(" sfx01_header - Dumps the header of a SCI01 song\n");
DebugPrintf(" sfx01_track - Dumps a track of a SCI01 song\n");
- DebugPrintf(" stop_sfx - Stops a playing sound\n");
DebugPrintf("\n");
DebugPrintf("Script:\n");
DebugPrintf(" addresses - Provides information on how to pass addresses\n");