[Scummvm-git-logs] scummvm master -> cc9f49e89c4c70136a898c66e40ecea76ab7c05d

rvanlaar noreply at scummvm.org
Mon Mar 14 20:12:14 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:
cc9f49e89c DIRECTOR: LINGO: Add traceLoad to cb_theassign2


Commit: cc9f49e89c4c70136a898c66e40ecea76ab7c05d
    https://github.com/scummvm/scummvm/commit/cc9f49e89c4c70136a898c66e40ecea76ab7c05d
Author: Roland van Laar (roland at rolandvanlaar.nl)
Date: 2022-03-14T21:12:00+01:00

Commit Message:
DIRECTOR: LINGO: Add traceLoad to cb_theassign2

traceLoad handling was missing from cb_theassign2.
Fixes D4 dictionary traceLoad movie.

Changed paths:
    engines/director/lingo/lingo-bytecode.cpp


diff --git a/engines/director/lingo/lingo-bytecode.cpp b/engines/director/lingo/lingo-bytecode.cpp
index 0cd7df7bcbf..5ab06276a84 100644
--- a/engines/director/lingo/lingo-bytecode.cpp
+++ b/engines/director/lingo/lingo-bytecode.cpp
@@ -603,6 +603,8 @@ void LC::cb_theassign2() {
 		g_lingo->_actorList = value;
 	} else if (name == "searchPath") {
 		g_lingo->_searchPath = value;
+	} else if (name == "traceLoad") {
+		g_lingo->_traceLoad = value.asInt();
 	} else if (name == "updateMovieEnabled") {
 		g_lingo->_updateMovieEnabled = bool(value.asInt());
 	} else {




More information about the Scummvm-git-logs mailing list