aboutsummaryrefslogtreecommitdiff
path: root/engines/sci
diff options
context:
space:
mode:
authorMartin Kiewitz2010-01-02 14:11:38 +0000
committerMartin Kiewitz2010-01-02 14:11:38 +0000
commit1084b90fbb0d81b9c5add77e52968809552d18d1 (patch)
tree616b10093b9bbcf848cfa7a887ea3177f85413ad /engines/sci
parentd4738631d5d61bd341270f450676d32a2d775a2c (diff)
downloadscummvm-rg350-1084b90fbb0d81b9c5add77e52968809552d18d1.tar.gz
scummvm-rg350-1084b90fbb0d81b9c5add77e52968809552d18d1.tar.bz2
scummvm-rg350-1084b90fbb0d81b9c5add77e52968809552d18d1.zip
SCI: listsaves is now "list_saves", also included entry in help
svn-id: r46884
Diffstat (limited to 'engines/sci')
-rw-r--r--engines/sci/console.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/sci/console.cpp b/engines/sci/console.cpp
index 259687461c..0e71131f0d 100644
--- a/engines/sci/console.cpp
+++ b/engines/sci/console.cpp
@@ -109,7 +109,7 @@ Console::Console(SciEngine *vm) : GUI::Debugger() {
DCmd_Register("version", WRAP_METHOD(Console, cmdGetVersion));
DCmd_Register("room", WRAP_METHOD(Console, cmdRoomNumber));
DCmd_Register("exit", WRAP_METHOD(Console, cmdExit));
- DCmd_Register("listsaves", WRAP_METHOD(Console, cmdListSaves));
+ DCmd_Register("list_saves", WRAP_METHOD(Console, cmdListSaves));
// Screen
DCmd_Register("sci0_palette", WRAP_METHOD(Console, cmdSci0Palette));
DCmd_Register("clear_screen", WRAP_METHOD(Console, cmdClearScreen));
@@ -324,6 +324,7 @@ bool Console::cmdHelp(int argc, const char **argv) {
DebugPrintf("Game:\n");
DebugPrintf(" save_game - Saves the current game state to the hard disk\n");
DebugPrintf(" restore_game - Restores a saved game from the hard disk\n");
+ DebugPrintf(" list_saves - List all saved games including filenames\n");
DebugPrintf(" restart_game - Restarts the game\n");
DebugPrintf(" version - Shows the resource and interpreter versions\n");
DebugPrintf(" room - Shows the current room number\n");