aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorColin Snover2016-09-20 21:03:04 -0500
committerColin Snover2016-09-29 19:39:16 -0500
commit3cc5e55201fd1a657cf6a0e626e7666358cd396d (patch)
tree29644a1cf2cf2bb22175c09f3154118c2d8c4314 /engines
parent84d8ac4c38bd2aabbbc7ad85ae257db69ba33574 (diff)
downloadscummvm-rg350-3cc5e55201fd1a657cf6a0e626e7666358cd396d.tar.gz
scummvm-rg350-3cc5e55201fd1a657cf6a0e626e7666358cd396d.tar.bz2
scummvm-rg350-3cc5e55201fd1a657cf6a0e626e7666358cd396d.zip
SCI: Fix typo in debugger help
Diffstat (limited to 'engines')
-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 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;
}