From 35e9a957575e7d8c194fd460f6f1ee50519a7033 Mon Sep 17 00:00:00 2001 From: Eugene Sandulenko Date: Sun, 29 Dec 2019 00:36:30 +0100 Subject: DIRECTOR: LINGO: Implement 'the stilldown' --- engines/director/lingo/lingo-the.cpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'engines/director/lingo') diff --git a/engines/director/lingo/lingo-the.cpp b/engines/director/lingo/lingo-the.cpp index 1ea03b2ce6..1f82a90784 100644 --- a/engines/director/lingo/lingo-the.cpp +++ b/engines/director/lingo/lingo-the.cpp @@ -514,6 +514,10 @@ Datum Lingo::getTheEntity(int entity, Datum &id, int field) { d.type = INT; d.u.i = _vm->getCurrentScore()->getCurrentFrame(); break; + case kTheStillDown: + d.type = INT; + d.u.i = _vm->getCurrentScore()->_mouseIsDown; + break; default: warning("Lingo::getTheEntity(): Unprocessed getting field %d of entity %d", field, entity); d.type = VOID; -- cgit v1.2.3