[Scummvm-git-logs] scummvm master -> 31b6d892b055dc86d42fa23e3624be23eb303f69
sev-
sev at scummvm.org
Thu Apr 2 22:57:25 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:
31b6d892b0 DIRECTOR: Disable non-referenced action skipping as it breaks many things
Commit: 31b6d892b055dc86d42fa23e3624be23eb303f69
https://github.com/scummvm/scummvm/commit/31b6d892b055dc86d42fa23e3624be23eb303f69
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2020-04-03T00:56:34+02:00
Commit Message:
DIRECTOR: Disable non-referenced action skipping as it breaks many things
Changed paths:
engines/director/score.cpp
diff --git a/engines/director/score.cpp b/engines/director/score.cpp
index 29a036e927..19de8c8fba 100644
--- a/engines/director/score.cpp
+++ b/engines/director/score.cpp
@@ -1093,7 +1093,7 @@ void Score::loadActions(Common::SeekableSubReadStreamEndian &stream) {
for (j = _actions.begin(); j != _actions.end(); ++j) {
if (!scriptRefs[j->_key]) {
warning("Action id %d is not referenced, skipping, the code was:\n-----\n%s\n------", j->_key, j->_value.c_str());
- continue;
+ // continue;
}
if (!j->_value.empty()) {
_lingo->addCode(j->_value.c_str(), kFrameScript, j->_key);
More information about the Scummvm-git-logs
mailing list