diff options
author | Martin Kiewitz | 2010-04-24 20:49:19 +0000 |
---|---|---|
committer | Martin Kiewitz | 2010-04-24 20:49:19 +0000 |
commit | 8f9dd90a871dee20ccb61efc2a5727f7a11b4a05 (patch) | |
tree | de4e4cf070bb77fc36ecf5fd5d03ec79530f7276 /engines | |
parent | cbd8faa82ed129615fcaffaa86ac2d862ffcae58 (diff) | |
download | scummvm-rg350-8f9dd90a871dee20ccb61efc2a5727f7a11b4a05.tar.gz scummvm-rg350-8f9dd90a871dee20ccb61efc2a5727f7a11b4a05.tar.bz2 scummvm-rg350-8f9dd90a871dee20ccb61efc2a5727f7a11b4a05.zip |
SCI: add show_map command to debug help again (must have been lost some time due cleanup from old graphics code)
svn-id: r48788
Diffstat (limited to 'engines')
-rw-r--r-- | engines/sci/console.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/sci/console.cpp b/engines/sci/console.cpp index a688001793..2909f3aafa 100644 --- a/engines/sci/console.cpp +++ b/engines/sci/console.cpp @@ -113,9 +113,8 @@ Console::Console(SciEngine *engine) : GUI::Debugger() { DCmd_Register("room", WRAP_METHOD(Console, cmdRoomNumber)); DCmd_Register("quit", WRAP_METHOD(Console, cmdQuit)); DCmd_Register("list_saves", WRAP_METHOD(Console, cmdListSaves)); - // Screen - DCmd_Register("show_map", WRAP_METHOD(Console, cmdShowMap)); // Graphics + DCmd_Register("show_map", WRAP_METHOD(Console, cmdShowMap)); DCmd_Register("set_palette", WRAP_METHOD(Console, cmdSetPalette)); DCmd_Register("draw_pic", WRAP_METHOD(Console, cmdDrawPic)); DCmd_Register("draw_cel", WRAP_METHOD(Console, cmdDrawCel)); @@ -326,6 +325,7 @@ bool Console::cmdHelp(int argc, const char **argv) { DebugPrintf(" quit - Quits the game\n"); DebugPrintf("\n"); DebugPrintf("Graphics:\n"); + DebugPrintf(" show_map - Switches to visual, priority, control or display screen\n"); DebugPrintf(" set_palette - Sets a palette resource\n"); DebugPrintf(" draw_pic - Draws a pic resource\n"); DebugPrintf(" draw_cel - Draws a cel from a view resource\n"); |