[Scummvm-git-logs] scummvm master -> 412b340ce84222272cb3411922e496a5fe171f63

rvanlaar roland at rolandvanlaar.nl
Wed Jul 29 14:47:16 UTC 2020


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:
412b340ce8 DIRECTOR: Add debuginfo for DigitalVideoCast


Commit: 412b340ce84222272cb3411922e496a5fe171f63
    https://github.com/scummvm/scummvm/commit/412b340ce84222272cb3411922e496a5fe171f63
Author: Roland van Laar (roland at rolandvanlaar.nl)
Date: 2020-07-29T16:46:54+02:00

Commit Message:
DIRECTOR: Add debuginfo for DigitalVideoCast

Changed paths:
    engines/director/castmember.cpp


diff --git a/engines/director/castmember.cpp b/engines/director/castmember.cpp
index f1c20f052e..937a90578c 100644
--- a/engines/director/castmember.cpp
+++ b/engines/director/castmember.cpp
@@ -273,7 +273,18 @@ DigitalVideoCastMember::DigitalVideoCastMember(Cast *cast, uint16 castId, Common
 		_crop = !(flags2 & 0x02);
 		_center = flags2 & 0x01;
 		_directToStage = true;
+		debugC(2, kDebugLoading, "DigitalVideoCastMember(): flags1: (%d 0x%x)", flags1, flags1);
+
+		debugC(2, kDebugLoading, "DigitalVideoCastMember(): flags2: (%d 0x%x)", flags2, flags2);
 	}
+	debugC(2, kDebugLoading, "_frameRate: %d", _frameRateType);
+	debugC(2, kDebugLoading, "_frameRateType: %d, _preload: %d, _enableVideo %d, _pausedAtStart %d",
+			_frameRateType, _preload, _enableVideo, _pausedAtStart);
+	debugC(2, kDebugLoading, "_showControls: %d, _looping: %d, _enableSound: %d, _crop %d, _center: %d, _directToStage: %d",
+			_showControls, _looping, _enableSound, _crop, _center, _directToStage);
+
+	if (debugChannelSet(2, kDebugLoading))
+		_initialRect.debugPrint(2, "DigitalVideoCastMember(): rect:");
 }
 
 DigitalVideoCastMember::~DigitalVideoCastMember() {




More information about the Scummvm-git-logs mailing list