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

sev- noreply at scummvm.org
Sun Jun 5 23:13:55 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:
eb59892ce4 DIRECTOR: LINGO: Implement STUB kTheStageColor in Lingo::getTheEntity()


Commit: eb59892ce4afab5c35315b4f1ca38f1946790804
    https://github.com/scummvm/scummvm/commit/eb59892ce4afab5c35315b4f1ca38f1946790804
Author: Pragyansh Chaturvedi (r41k0u) (pragyanshchaturvedi18 at gmail.com)
Date: 2022-06-06T01:13:52+02:00

Commit Message:
DIRECTOR: LINGO: Implement STUB kTheStageColor in Lingo::getTheEntity()

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


diff --git a/engines/director/lingo/lingo-the.cpp b/engines/director/lingo/lingo-the.cpp
index 56672ddef40..dcbefe64382 100644
--- a/engines/director/lingo/lingo-the.cpp
+++ b/engines/director/lingo/lingo-the.cpp
@@ -826,7 +826,8 @@ Datum Lingo::getTheEntity(int entity, Datum &id, int field) {
 		d.u.i = _vm->getCurrentWindow()->getSurface()->h;
 		break;
 	case kTheStageColor:
-		getTheEntitySTUB(kTheStageColor);
+		d.type = INT;
+		d.u.i = g_director->getCurrentWindow()->getStageColor();
 		break;
 	case kTheStageLeft:
 		d.type = INT;




More information about the Scummvm-git-logs mailing list