[Scummvm-git-logs] scummvm master -> 4a748a17917c1d674b8325843177b861e7e66bbd
sev-
noreply at scummvm.org
Fri Oct 7 23:33:49 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:
4a748a1791 DIRECTOR: Fix copy/paste error
Commit: 4a748a17917c1d674b8325843177b861e7e66bbd
https://github.com/scummvm/scummvm/commit/4a748a17917c1d674b8325843177b861e7e66bbd
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2022-10-08T01:33:14+02:00
Commit Message:
DIRECTOR: Fix copy/paste error
Changed paths:
engines/director/debugger.cpp
diff --git a/engines/director/debugger.cpp b/engines/director/debugger.cpp
index 497ed8921ac..3a8167f6ded 100644
--- a/engines/director/debugger.cpp
+++ b/engines/director/debugger.cpp
@@ -371,7 +371,7 @@ bool Debugger::cmdDisasm(int argc, const char **argv) {
if (sharedCast && sharedCast->_lingoArchive) {
for (int i = 0; i <= kMaxScriptType; i++) {
debugPrintf(" %s:\n", scriptType2str((ScriptType)i));
- if (cast->_lingoArchive->scriptContexts[i].size() == 0)
+ if (sharedCast->_lingoArchive->scriptContexts[i].size() == 0)
debugPrintf(" [empty]\n");
for (auto &it : sharedCast->_lingoArchive->scriptContexts[i]) {
More information about the Scummvm-git-logs
mailing list