diff options
author | Vhati | 2019-01-16 17:03:58 -0500 |
---|---|---|
committer | Filippos Karapetis | 2019-01-17 14:03:49 +0200 |
commit | ff45b1da203cc742139ecc7404edd5d5692e63ab (patch) | |
tree | 4cdbcc9228fc7234a3de65f1779943a4059afd92 /engines/sci | |
parent | 92f8ad94d2c83c338e53002dc9afb30b19ff997e (diff) | |
download | scummvm-rg350-ff45b1da203cc742139ecc7404edd5d5692e63ab.tar.gz scummvm-rg350-ff45b1da203cc742139ecc7404edd5d5692e63ab.tar.bz2 scummvm-rg350-ff45b1da203cc742139ecc7404edd5d5692e63ab.zip |
SCI: Fix debugger bp_action help message
Fixes the help for bp_action: 'none' arg should be 'ignore'
Diffstat (limited to 'engines/sci')
-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 99fae41d05..290c58ab92 100644 --- a/engines/sci/console.cpp +++ b/engines/sci/console.cpp @@ -4013,7 +4013,7 @@ bool Console::cmdBreakpointAction(int argc, const char **argv) { if (usage) { debugPrintf("Change the action for the breakpoint with the specified index.\n"); - debugPrintf("Usage: %s <breakpoint index> break|log|bt|inspect|none\n", argv[0]); + debugPrintf("Usage: %s <breakpoint index> break|log|bt|inspect|ignore\n", argv[0]); debugPrintf("<index> * will process all breakpoints\n"); debugPrintf("Actions: break : break into debugger\n"); debugPrintf(" log : log without breaking\n"); |