From 0e381609966a186900033b107ebb8844f765491a Mon Sep 17 00:00:00 2001 From: Eugene Sandulenko Date: Fri, 10 Feb 2023 12:49:57 +0100 Subject: [PATCH] DIRECTOR: LINGO: Implementing setting 'the searchPath' entity Used in the first movie script of mcluhan --- engines/director/lingo/lingo-the.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/engines/director/lingo/lingo-the.cpp b/engines/director/lingo/lingo-the.cpp index c55f553a6fc..470ea0030f3 100644 --- a/engines/director/lingo/lingo-the.cpp +++ b/engines/director/lingo/lingo-the.cpp @@ -1086,6 +1086,9 @@ void Lingo::setTheEntity(int entity, Datum &id, int field, Datum &d) { case kTheSearchCurrentFolder: warning("BUILDBOT: Trying to set SearchCurrentFolder lingo property"); break; + case kTheSearchPath: + g_lingo->_searchPath = d; + break; case kTheSelEnd: movie->_selEnd = d.asInt(); if (movie->_currentEditableTextChannel != 0) {