From ff45b1da203cc742139ecc7404edd5d5692e63ab Mon Sep 17 00:00:00 2001 From: Vhati Date: Wed, 16 Jan 2019 17:03:58 -0500 Subject: SCI: Fix debugger bp_action help message Fixes the help for bp_action: 'none' arg should be 'ignore' --- engines/sci/console.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 break|log|bt|inspect|none\n", argv[0]); + debugPrintf("Usage: %s break|log|bt|inspect|ignore\n", argv[0]); debugPrintf(" * will process all breakpoints\n"); debugPrintf("Actions: break : break into debugger\n"); debugPrintf(" log : log without breaking\n"); -- cgit v1.2.3