diff options
author | Filippos Karapetis | 2010-01-24 11:54:55 +0000 |
---|---|---|
committer | Filippos Karapetis | 2010-01-24 11:54:55 +0000 |
commit | bab94d58ba2a91c647c17a88e4ca3928ebe838b4 (patch) | |
tree | cbfb3ba91996a4780b5ad1bfd20ce638170f0fb7 | |
parent | 135294068848fbe476658af4765f85fee75fa57f (diff) | |
download | scummvm-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
-rw-r--r-- | engines/sci/console.cpp | 5 |
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"); |