[Scummvm-git-logs] scummvm master -> c17e82c1aa13b954645affb7e0fa037792ee4012
digitall
547637+digitall at users.noreply.github.com
Fri May 8 03:31:52 UTC 2020
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:
c17e82c1aa SCI: added missing but implemented help commands for scripts
Commit: c17e82c1aa13b954645affb7e0fa037792ee4012
https://github.com/scummvm/scummvm/commit/c17e82c1aa13b954645affb7e0fa037792ee4012
Author: Ralph Caraveo III (deckarep at gmail.com)
Date: 2020-05-08T04:31:49+01:00
Commit Message:
SCI: added missing but implemented help commands for scripts
These commands have already been implemented by a previous committer.
This commit simply adds the commands to the console debug `help` command for the SCI engine.
Changed paths:
engines/sci/console.cpp
diff --git a/engines/sci/console.cpp b/engines/sci/console.cpp
index 1ab65edb38..8b10279482 100644
--- a/engines/sci/console.cpp
+++ b/engines/sci/console.cpp
@@ -409,6 +409,9 @@ bool Console::cmdHelp(int argc, const char **argv) {
debugPrintf(" dissect_script - Examines a script\n");
debugPrintf(" backtrace / bt - Dumps the send/self/super/call/calle/callb stack\n");
debugPrintf(" trace / t / s - Executes one operation (no parameters) or several operations (specified as a parameter) \n");
+ debugPrintf(" script_objects / scro - Shows all objects inside a specfied script\n");
+ debugPrintf(" script_steps - Shows the number of executed SCI operations\n");
+ debugPrintf(" script_strings / scrs - Shows all strings inside a specified script\n");
debugPrintf(" stepover / p - Executes one operation, skips over call/send\n");
debugPrintf(" step_ret / pret - Steps forward until ret is called on the current execution stack level.\n");
debugPrintf(" step_event / se - Steps forward until a SCI event is received.\n");
More information about the Scummvm-git-logs
mailing list