diff options
author | Filippos Karapetis | 2015-12-23 21:40:04 +0200 |
---|---|---|
committer | Willem Jan Palenstijn | 2015-12-23 21:43:17 +0100 |
commit | b3a19cf75ed30ddbb60fd05223efe6a26087834d (patch) | |
tree | c47a17e527d56a04d62daabe91abaf5ea0394bde | |
parent | 9dae9eb811dfafaf109dd9d17cc12ffba128428a (diff) | |
download | scummvm-rg350-b3a19cf75ed30ddbb60fd05223efe6a26087834d.tar.gz scummvm-rg350-b3a19cf75ed30ddbb60fd05223efe6a26087834d.tar.bz2 scummvm-rg350-b3a19cf75ed30ddbb60fd05223efe6a26087834d.zip |
LAB: Show the correct number of parameters in find_action
-rw-r--r-- | engines/lab/console.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/lab/console.cpp b/engines/lab/console.cpp index 4aa949054b..84f936568e 100644 --- a/engines/lab/console.cpp +++ b/engines/lab/console.cpp @@ -98,7 +98,7 @@ bool Console::Cmd_DumpSceneResources(int argc, const char **argv) { bool Console::Cmd_FindAction(int argc, const char **argv) { if (argc < 2) { - debugPrintf("Usage: %s <action id> [param 1] [param 2]\n", argv[0]); + debugPrintf("Usage: %s <action id> [param 1] [param 2] [param 3]\n", argv[0]); return true; } |