[Scummvm-git-logs] scummvm master -> b88ca9fda3f4b8a54a462f898c973d147e1f450d
sev-
noreply at scummvm.org
Mon Jun 8 21:44:05 UTC 2026
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://api.github.com/repos/scummvm/scummvm .
Summary:
b88ca9fda3 DIRECTOR: Remove too aggressive check of VWCF checksum comparison
Commit: b88ca9fda3f4b8a54a462f898c973d147e1f450d
https://github.com/scummvm/scummvm/commit/b88ca9fda3f4b8a54a462f898c973d147e1f450d
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2026-06-08T23:43:09+02:00
Commit Message:
DIRECTOR: Remove too aggressive check of VWCF checksum comparison
Changed paths:
engines/director/cast.cpp
diff --git a/engines/director/cast.cpp b/engines/director/cast.cpp
index f9001f7009a..d2f4adb65a7 100644
--- a/engines/director/cast.cpp
+++ b/engines/director/cast.cpp
@@ -528,11 +528,8 @@ bool Cast::loadConfig() {
//Calculation and verification of checksum
uint32 check = computeChecksum();
- if (check != _checksum) {
+ if (check != _checksum)
warning("BUILDBOT: The checksum for this VWCF resource is incorrect. Got %08x, but expected %08x", check, _checksum);
- delete stream;
- return false;
- }
if (_version >= kFileVer400 && _version < kFileVer500) {
_field30 = stream->readSint16();
More information about the Scummvm-git-logs
mailing list