aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/console.cpp
diff options
context:
space:
mode:
authorVhati2019-01-16 17:03:58 -0500
committerFilippos Karapetis2019-01-17 14:03:49 +0200
commitff45b1da203cc742139ecc7404edd5d5692e63ab (patch)
tree4cdbcc9228fc7234a3de65f1779943a4059afd92 /engines/sci/console.cpp
parent92f8ad94d2c83c338e53002dc9afb30b19ff997e (diff)
downloadscummvm-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/console.cpp')
-rw-r--r--engines/sci/console.cpp2
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");