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

sev- noreply at scummvm.org
Sun Mar 26 20:40:50 UTC 2023


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:
e5b11f18a2 DIRECTOR: Do not want about SCRF and VWtk chunks, since we do not need them


Commit: e5b11f18a2a5cbc601f412ad4484968fc45dd50f
    https://github.com/scummvm/scummvm/commit/e5b11f18a2a5cbc601f412ad4484968fc45dd50f
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2023-03-26T22:40:31+02:00

Commit Message:
DIRECTOR: Do not want about SCRF and VWtk chunks, since we do not need them

Changed paths:
    engines/director/cast.cpp


diff --git a/engines/director/cast.cpp b/engines/director/cast.cpp
index 99f78ef371d..8461c6c623c 100644
--- a/engines/director/cast.cpp
+++ b/engines/director/cast.cpp
@@ -507,10 +507,9 @@ void Cast::loadCast() {
 		debug("STUB: Unhandled VWtc resource");
 	}
 
-	// Tape Key resource. Perhaps a lookup for labels?
-	// TODO: Is this a score resource?
+	// Tape Key resource. Used as a lookup for labels in early Directors, later dropped
 	if (_castArchive->hasResource(MKTAG('V', 'W', 't', 'k'), -1)) {
-		debug("STUB: Unhandled VWtk resource");
+		debugC(4, kDebugLoading, "VWtk resource skipped");
 	}
 
 	// External sound files
@@ -564,8 +563,9 @@ void Cast::loadCast() {
 	}
 
 	// External Cast Reference resources
+	// Used only by authoring tools for referring to the external casts
 	if (_castArchive->hasResource(MKTAG('S', 'C', 'R', 'F'), -1)) {
-		debug("STUB: Unhandled 'SCRF' resource");
+		debugC(4, kDebugLoading, "'SCRF' resource skipped");
 	}
 
 	// Score Order List resources




More information about the Scummvm-git-logs mailing list