diff options
-rw-r--r-- | scumm/debugger.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/scumm/debugger.cpp b/scumm/debugger.cpp index f02103d798..f6c149b2f3 100644 --- a/scumm/debugger.cpp +++ b/scumm/debugger.cpp @@ -320,6 +320,9 @@ bool ScummDebugger::Cmd_Actor(int argc, const char **argv) { if (!strcmp(argv[2], "ignoreboxes")) { a->ignoreBoxes = atoi(argv[3]); Debug_Printf("Actor[%d].ignoreBoxes = %d\n", actnum, a->ignoreBoxes); + } else if (!strcmp(argv[2], "costume")) { + a->setActorCostume( atoi(argv[3]) ); + Debug_Printf("Actor[%d].costume = %d\n", actnum, a->costume); } else { Debug_Printf("Unknown actor command '%s'\n", argv[2]); } |