[Scummvm-git-logs] scummvm master -> 15f0d06bfe4ef111a57c08e75ae92f5e3e0bafe4
bluegr
noreply at scummvm.org
Fri Aug 19 21:05:55 UTC 2022
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:
15f0d06bfe SCUMM: Document all the available actor commands in the debugger
Commit: 15f0d06bfe4ef111a57c08e75ae92f5e3e0bafe4
https://github.com/scummvm/scummvm/commit/15f0d06bfe4ef111a57c08e75ae92f5e3e0bafe4
Author: Donovan Watteau (contrib at dwatteau.fr)
Date: 2022-08-20T00:05:51+03:00
Commit Message:
SCUMM: Document all the available actor commands in the debugger
Changed paths:
engines/scumm/debugger.cpp
diff --git a/engines/scumm/debugger.cpp b/engines/scumm/debugger.cpp
index 7f41f83e6af..a3e5be94919 100644
--- a/engines/scumm/debugger.cpp
+++ b/engines/scumm/debugger.cpp
@@ -532,6 +532,7 @@ bool ScummDebugger::Cmd_Actor(int argc, const char **argv) {
if (argc < 3) {
debugPrintf("Syntax: actor <actornum> <command> <parameter>\n");
+ debugPrintf("Valid commands: animvar|anim|condmask|costume|_elevation|ignoreboxes|name|x|y\n");
return true;
}
@@ -587,7 +588,7 @@ bool ScummDebugger::Cmd_Actor(int argc, const char **argv) {
}
debugPrintf("Actor[%d]._heCondMask = 0x%X\n", actnum, a->_heCondMask);
} else {
- debugPrintf("Unknown actor command '%s'\nUse <ignoreboxes |costume> as command\n", argv[2]);
+ debugPrintf("Unknown actor command '%s'\n", argv[2]);
}
return true;
More information about the Scummvm-git-logs
mailing list