[Scummvm-git-logs] scummvm master -> 1fa0f00bef2188ad7af595fb70ce0f0a66740e57
sev-
noreply at scummvm.org
Sat Apr 26 11:36:49 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:
1fa0f00bef DIRECTOR: XTRA: Set origin for the QTVR decoder in QTVR Xtra
Commit: 1fa0f00bef2188ad7af595fb70ce0f0a66740e57
https://github.com/scummvm/scummvm/commit/1fa0f00bef2188ad7af595fb70ce0f0a66740e57
Author: Malhar (themalharbdv2046 at gmail.com)
Date: 2025-04-26T19:36:46+08:00
Commit Message:
DIRECTOR: XTRA: Set origin for the QTVR decoder in QTVR Xtra
Please refer to the pull request
https://github.com/scummvm/scummvm/pull/6548
Set the corner origin point in the QTVR decoder from
QTVR Xtra in order to make sure during the swing transition
the QTVR video decoder sets the image at the correct position
Changed paths:
engines/director/lingo/xtras/qtvrxtra.cpp
diff --git a/engines/director/lingo/xtras/qtvrxtra.cpp b/engines/director/lingo/xtras/qtvrxtra.cpp
index 6496b0ea6d7..6ac854d4652 100644
--- a/engines/director/lingo/xtras/qtvrxtra.cpp
+++ b/engines/director/lingo/xtras/qtvrxtra.cpp
@@ -382,6 +382,7 @@ void QtvrxtraXtra::m_QTVROpen(int nargs) {
}
me->_video->setTargetSize(me->_rect.width(), me->_rect.height());
+ me->_video->setOrigin(me->_rect.left, me->_rect.top);
me->_widget = new QtvrxtraWidget(me, g_director->getCurrentWindow(),
me->_rect.left, me->_rect.top, me->_rect.width(), me->_rect.height(),
More information about the Scummvm-git-logs
mailing list