[Scummvm-git-logs] scummvm master -> 1024d3982e90d34ef9a2f977317f3d493e473e7d

sev- sev at scummvm.org
Thu May 7 11:15:25 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:
1024d3982e DIRECTOR: Implement is QuickTimePresent check


Commit: 1024d3982e90d34ef9a2f977317f3d493e473e7d
    https://github.com/scummvm/scummvm/commit/1024d3982e90d34ef9a2f977317f3d493e473e7d
Author: Roland van Laar (roland at rolandvanlaar.nl)
Date: 2020-05-07T13:15:21+02:00

Commit Message:
DIRECTOR: Implement is QuickTimePresent check

QuickTime is always present since ScummVM handles that.

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 b55910787b..da9efc771a 100644
--- a/engines/director/lingo/lingo-the.cpp
+++ b/engines/director/lingo/lingo-the.cpp
@@ -457,6 +457,11 @@ Datum Lingo::getTheEntity(int entity, Datum &id, int field) {
 		d.type = INT;
 		d.u.i = _vm->getMacTicks() - _vm->getCurrentScore()->_lastRollTime;
 		break;
+	case kTheQuickTimePresent:
+		// QuickTime is always present for scummvm
+		d.type = INT;
+		d.u.i = 1;
+		break;
 	default:
 		warning("Lingo::getTheEntity(): Unprocessed getting field \"%s\" of entity %s", field2str(field), entity2str(entity));
 		d.type = VOID;




More information about the Scummvm-git-logs mailing list