[Scummvm-git-logs] scummvm master -> a9854ba4dd20f9d439fe2054a43e07b4ad18877f
sev-
noreply at scummvm.org
Wed Nov 12 14:57:19 UTC 2025
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:
a9854ba4dd DIRECTOR: Do not warn about color depth change without necessity
Commit: a9854ba4dd20f9d439fe2054a43e07b4ad18877f
https://github.com/scummvm/scummvm/commit/a9854ba4dd20f9d439fe2054a43e07b4ad18877f
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2025-11-12T15:57:04+01:00
Commit Message:
DIRECTOR: Do not warn about color depth change without necessity
Changed paths:
engines/director/cast.cpp
diff --git a/engines/director/cast.cpp b/engines/director/cast.cpp
index 857756a2653..a3dcf15a9b6 100644
--- a/engines/director/cast.cpp
+++ b/engines/director/cast.cpp
@@ -563,8 +563,8 @@ bool Cast::loadConfig() {
_vm->setVersion(humanVer);
}
- if (_movieDepth > 0) {
- warning("STUB: loadConfig(): Movie bit depth is %d", _movieDepth);
+ if (_movieDepth != _vm->_colorDepth) {
+ warning("STUB: loadConfig(): Movie bit depth is %d, but set to %d", _movieDepth, _vm->_colorDepth);
}
delete stream;
More information about the Scummvm-git-logs
mailing list