[Scummvm-git-logs] scummvm master -> bb15df9eac419a95d186e1ef3d3265be8ffd95b7
sev-
sev at scummvm.org
Fri Feb 21 23:34:10 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:
bb15df9eac DIRECTOR: LINGO: Fix archiveIndex for defined functions
Commit: bb15df9eac419a95d186e1ef3d3265be8ffd95b7
https://github.com/scummvm/scummvm/commit/bb15df9eac419a95d186e1ef3d3265be8ffd95b7
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2020-02-22T00:33:59+01:00
Commit Message:
DIRECTOR: LINGO: Fix archiveIndex for defined functions
Changed paths:
engines/director/lingo/lingo-codegen.cpp
diff --git a/engines/director/lingo/lingo-codegen.cpp b/engines/director/lingo/lingo-codegen.cpp
index 693524e..76be978 100644
--- a/engines/director/lingo/lingo-codegen.cpp
+++ b/engines/director/lingo/lingo-codegen.cpp
@@ -275,7 +275,7 @@ Symbol *Lingo::define(Common::String &name, int nargs, ScriptData *code) {
sym->argNames = NULL;
sym->varNames = NULL;
sym->ctx = NULL;
- sym->archiveIndex = -1;
+ sym->archiveIndex = _archiveIndex;
if (debugChannelSet(1, kDebugLingoCompile)) {
uint pc = 0;
More information about the Scummvm-git-logs
mailing list