[Scummvm-git-logs] scummvm master -> 486513c715944af4e9cd42d63a54ce2eed66f94d

djsrv dservilla at gmail.com
Fri Jun 4 13:50:39 UTC 2021


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:
486513c715 DIRECTOR: Skip normal loading for APPL archives again


Commit: 486513c715944af4e9cd42d63a54ce2eed66f94d
    https://github.com/scummvm/scummvm/commit/486513c715944af4e9cd42d63a54ce2eed66f94d
Author: djsrv (dservilla at gmail.com)
Date: 2021-06-04T09:50:02-04:00

Commit Message:
DIRECTOR: Skip normal loading for APPL archives again

Changed paths:
    engines/director/archive.cpp


diff --git a/engines/director/archive.cpp b/engines/director/archive.cpp
index fbbcf665e5..a269b422c6 100644
--- a/engines/director/archive.cpp
+++ b/engines/director/archive.cpp
@@ -501,6 +501,10 @@ bool RIFXArchive::openStream(Common::SeekableReadStream *stream, uint32 startOff
 	if (!readMapSuccess)
 		return false;
 
+	// If this is a projector, readMemoryMap read the embedded movie. Nothing more to do.
+	if (_rifxType == MKTAG('A', 'P', 'P', 'L'))
+		return true;
+
 	if (ConfMan.getBool("dump_scripts")) {
 		debug("RIFXArchive::openStream(): Dumping %d resources", _resources.size());
 




More information about the Scummvm-git-logs mailing list