Skip to content

Commit

Permalink
SCI: Fix typo in debugger help
Browse files Browse the repository at this point in the history
  • Loading branch information
csnover committed Sep 30, 2016
1 parent 84d8ac4 commit 3cc5e55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engines/sci/console.cpp
Expand Up @@ -3778,7 +3778,7 @@ bool Console::cmdBreakpointKernel(int argc, const char **argv) {
bool Console::cmdBreakpointFunction(int argc, const char **argv) {
if (argc != 3) {
debugPrintf("Sets a breakpoint on the execution of the specified exported function.\n");
debugPrintf("Usage: %s <script number> <export number\n", argv[0]);
debugPrintf("Usage: %s <script number> <export number>\n", argv[0]);
return true;
}

Expand Down

0 comments on commit 3cc5e55

Please sign in to comment.