[Scummvm-git-logs] scummvm master -> 460a7c5742bea07e5bb67a194b20d3c2717fdba0
digitall
noreply at scummvm.org
Mon Mar 3 02:58:10 UTC 2025
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:
460a7c5742 DIRECTOR: Fix Cast Qualification GCC Compiler Warning
Commit: 460a7c5742bea07e5bb67a194b20d3c2717fdba0
https://github.com/scummvm/scummvm/commit/460a7c5742bea07e5bb67a194b20d3c2717fdba0
Author: D G Turner (digitall at scummvm.org)
Date: 2025-03-03T02:57:46Z
Commit Message:
DIRECTOR: Fix Cast Qualification GCC Compiler Warning
Changed paths:
engines/director/castmember/digitalvideo.cpp
diff --git a/engines/director/castmember/digitalvideo.cpp b/engines/director/castmember/digitalvideo.cpp
index a86f4679564..3c0e9941ed1 100644
--- a/engines/director/castmember/digitalvideo.cpp
+++ b/engines/director/castmember/digitalvideo.cpp
@@ -287,7 +287,7 @@ Graphics::MacWidget *DigitalVideoCastMember::createWidget(Common::Rect &bbox, Ch
const Graphics::Surface *frame = _video->decodeNextFrame();
- debugC(1, kDebugImages, "Video time: %d rate: %f frame: %p dims: %d x %d", _channel->_movieTime, _channel->_movieRate, (void *)frame, bbox.width(), bbox.height());
+ debugC(1, kDebugImages, "Video time: %d rate: %f frame: %p dims: %d x %d", _channel->_movieTime, _channel->_movieRate, (const void *)frame, bbox.width(), bbox.height());
if (frame) {
if (_lastFrame) {
More information about the Scummvm-git-logs
mailing list