[Scummvm-git-logs] scummvm master -> 34ba1c9fb2f4658d07f5a0f1fa9afd12a5664154

rvanlaar noreply at scummvm.org
Sun Mar 13 21:54:30 UTC 2022


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:
34ba1c9fb2 DIRECTOR: LINGO: buildbot check on type comparions


Commit: 34ba1c9fb2f4658d07f5a0f1fa9afd12a5664154
    https://github.com/scummvm/scummvm/commit/34ba1c9fb2f4658d07f5a0f1fa9afd12a5664154
Author: Roland van Laar (roland at rolandvanlaar.nl)
Date: 2022-03-13T22:54:17+01:00

Commit Message:
DIRECTOR: LINGO: buildbot check on type comparions

`"string" > 0` is True in Lingo. Let's run the buildbot and see which
comparisons between unaligned types are used.

Changed paths:
    engines/director/lingo/lingo.cpp


diff --git a/engines/director/lingo/lingo.cpp b/engines/director/lingo/lingo.cpp
index c13da3a592b..f7024e063d6 100644
--- a/engines/director/lingo/lingo.cpp
+++ b/engines/director/lingo/lingo.cpp
@@ -1088,7 +1088,7 @@ CompareResult Datum::compareTo(Datum &d) const {
 			return kCompareGreater;
 		}
 	} else {
-		warning("Invalid comparison between types %s and %s", type2str(), d.type2str());
+		warning("BUILDBOT: Invalid comparison between types %s and %s", type2str(), d.type2str());
 		return kCompareError;
 	}
 }




More information about the Scummvm-git-logs mailing list