[Scummvm-git-logs] scummvm master -> f2345cc37243cfe591148e4d1688d330ffd938e0
bluegr
bluegr at gmail.com
Wed Mar 4 00:53:18 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:
f2345cc372 SCI: debugger: disasm_addr - fixed 'bcc' parameter
Commit: f2345cc37243cfe591148e4d1688d330ffd938e0
https://github.com/scummvm/scummvm/commit/f2345cc37243cfe591148e4d1688d330ffd938e0
Author: Zvika Haramaty (haramaty.zvika at gmail.com)
Date: 2020-03-04T02:53:14+02:00
Commit Message:
SCI: debugger: disasm_addr - fixed 'bcc' parameter
Changed paths:
engines/sci/console.cpp
diff --git a/engines/sci/console.cpp b/engines/sci/console.cpp
index ba714460a3..06241f5ad8 100644
--- a/engines/sci/console.cpp
+++ b/engines/sci/console.cpp
@@ -3630,7 +3630,10 @@ bool Console::cmdDisassembleAddress(int argc, const char **argv) {
printBWTag = true;
else if (!scumm_stricmp(argv[i], "bc"))
printBytes = true;
- else if (toupper(argv[i][0]) == 'C')
+ else if (!scumm_stricmp(argv[i], "bcc")) {
+ printBytes = true;
+ printCSyntax = true;
+ } else if (toupper(argv[i][0]) == 'C')
opCount = atoi(argv[i] + 1);
else {
debugPrintf("Invalid option '%s'\n", argv[i]);
More information about the Scummvm-git-logs
mailing list