diff options
author | Colin Snover | 2016-09-20 21:03:04 -0500 |
---|---|---|
committer | Colin Snover | 2016-09-29 19:39:16 -0500 |
commit | 3cc5e55201fd1a657cf6a0e626e7666358cd396d (patch) | |
tree | 29644a1cf2cf2bb22175c09f3154118c2d8c4314 | |
parent | 84d8ac4c38bd2aabbbc7ad85ae257db69ba33574 (diff) | |
download | scummvm-rg350-3cc5e55201fd1a657cf6a0e626e7666358cd396d.tar.gz scummvm-rg350-3cc5e55201fd1a657cf6a0e626e7666358cd396d.tar.bz2 scummvm-rg350-3cc5e55201fd1a657cf6a0e626e7666358cd396d.zip |
SCI: Fix typo in debugger help
-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 b20ed3f8be..3f65ca799e 100644 --- a/engines/sci/console.cpp +++ b/engines/sci/console.cpp @@ -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; } |