[Scummvm-git-logs] scummvm master -> ff45b1da203cc742139ecc7404edd5d5692e63ab

bluegr bluegr at gmail.com
Thu Jan 17 13:03:53 CET 2019


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
ff45b1da20 SCI: Fix debugger bp_action help message


Commit: ff45b1da203cc742139ecc7404edd5d5692e63ab
    https://github.com/scummvm/scummvm/commit/ff45b1da203cc742139ecc7404edd5d5692e63ab
Author: Vhati (tvtronix at yahoo.com)
Date: 2019-01-17T14:03:49+02:00

Commit Message:
SCI: Fix debugger bp_action help message

Fixes the help for bp_action: 'none' arg should be 'ignore'

Changed paths:
    engines/sci/console.cpp


diff --git a/engines/sci/console.cpp b/engines/sci/console.cpp
index 99fae41..290c58a 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");





More information about the Scummvm-git-logs mailing list