diff options
author | Martin Kiewitz | 2010-01-27 20:06:07 +0000 |
---|---|---|
committer | Martin Kiewitz | 2010-01-27 20:06:07 +0000 |
commit | 00413a0b04a461ac3a0356617e01be60ce697a92 (patch) | |
tree | fb7526dd1a9f2ec851219ceebb4c87c7e9398056 | |
parent | f376572ed825ab55666a02aa300c3674ca65eec5 (diff) | |
download | scummvm-rg350-00413a0b04a461ac3a0356617e01be60ce697a92.tar.gz scummvm-rg350-00413a0b04a461ac3a0356617e01be60ce697a92.tar.bz2 scummvm-rg350-00413a0b04a461ac3a0356617e01be60ce697a92.zip |
SCI: also change exit to quit in help
svn-id: r47608
-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 e10d8e4d61..ac3f2b719a 100644 --- a/engines/sci/console.cpp +++ b/engines/sci/console.cpp @@ -312,7 +312,7 @@ bool Console::cmdHelp(int argc, const char **argv) { DebugPrintf(" restart_game - Restarts the game\n"); DebugPrintf(" version - Shows the resource and interpreter versions\n"); DebugPrintf(" room - Gets or sets the current room number\n"); - DebugPrintf(" exit - Exits the game\n"); + DebugPrintf(" quit - Quits the game\n"); DebugPrintf("\n"); DebugPrintf("Graphics:\n"); DebugPrintf(" set_palette - Sets a palette resource\n"); |