[Scummvm-git-logs] scummvm master -> 644c2cdf78bc38ed2d552fcc4a6c647f1655291f

djsrv dservilla at gmail.com
Wed Jul 7 01:53:41 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:
644c2cdf78 DIRECTOR: Fix STXT compilation version check


Commit: 644c2cdf78bc38ed2d552fcc4a6c647f1655291f
    https://github.com/scummvm/scummvm/commit/644c2cdf78bc38ed2d552fcc4a6c647f1655291f
Author: djsrv (dservilla at gmail.com)
Date: 2021-07-06T21:52:21-04:00

Commit Message:
DIRECTOR: Fix STXT compilation version check

Changed paths:
    engines/director/cast.cpp


diff --git a/engines/director/cast.cpp b/engines/director/cast.cpp
index a394a09d31..4cc727b5b3 100644
--- a/engines/director/cast.cpp
+++ b/engines/director/cast.cpp
@@ -453,7 +453,7 @@ void Cast::loadCast() {
 		delete r;
 
 		// Try to load movie script, it starts with a comment
-		if (_version <= kFileVer300) {
+		if (_version < kFileVer400) {
 			if (debugChannelSet(-1, kDebugFewFramesOnly))
 				warning("Compiling STXT %d", *iterator);
 




More information about the Scummvm-git-logs mailing list