[Scummvm-git-logs] scummvm master -> ec5e0cf1b695d6a9f9b3a643a7a88020d4cd6b64
rvanlaar
noreply at scummvm.org
Fri Aug 26 21:44:04 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:
ec5e0cf1b6 DIRECTOR: Check for cast children in buildbot
Commit: ec5e0cf1b695d6a9f9b3a643a7a88020d4cd6b64
https://github.com/scummvm/scummvm/commit/ec5e0cf1b695d6a9f9b3a643a7a88020d4cd6b64
Author: Roland van Laar (roland at rolandvanlaar.nl)
Date: 2022-08-26T23:43:55+02:00
Commit Message:
DIRECTOR: Check for cast children in buildbot
Not all cast types are handled when the cast is a child.
For example lingo scripts. This commit will notify us where other
unhandled cast childres exist.
Changed paths:
engines/director/cast.cpp
diff --git a/engines/director/cast.cpp b/engines/director/cast.cpp
index 353c653c31c..c55df070447 100644
--- a/engines/director/cast.cpp
+++ b/engines/director/cast.cpp
@@ -684,8 +684,10 @@ void Cast::loadCastChildren() {
continue;
}
- if (c->_value->_type != kCastBitmap)
+ if (c->_value->_type != kCastBitmap) {
+ warning("BUILDBOT: STUB: Cast::loadCastChildren(): Unhandled child of type: %d", c->_value->_type);
continue;
+ }
// Then handle bitmaps
BitmapCastMember *bitmapCast = (BitmapCastMember *)c->_value;
More information about the Scummvm-git-logs
mailing list