[Scummvm-git-logs] scummvm master -> 56f1eda8987549f95e678c2c1e82fa08f48c4edd
rvanlaar
noreply at scummvm.org
Wed Aug 30 11:42:59 UTC 2023
This automated email contains information about 2 new commits which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
570694954e JANITORIAL: fix indentation of struct
56f1eda898 DIRECTOR: XOBJ: Register QTVR XOBJ
Commit: 570694954e764276c3016660923d52302fa7a7da
https://github.com/scummvm/scummvm/commit/570694954e764276c3016660923d52302fa7a7da
Author: Roland van Laar (roland at rolandvanlaar.nl)
Date: 2023-08-30T13:42:53+02:00
Commit Message:
JANITORIAL: fix indentation of struct
Changed paths:
engines/director/lingo/lingo-object.cpp
diff --git a/engines/director/lingo/lingo-object.cpp b/engines/director/lingo/lingo-object.cpp
index ab9f2fe8ae9..61a26a804f9 100644
--- a/engines/director/lingo/lingo-object.cpp
+++ b/engines/director/lingo/lingo-object.cpp
@@ -196,9 +196,9 @@ static struct XLibProto {
{ JITDraw3XObj::fileNames, JITDraw3XObj::open, JITDraw3XObj::close, kXObj, 400 }, // D4
{ JourneyWareXINIXObj::fileNames, JourneyWareXINIXObj::open, JourneyWareXINIXObj::close, kXObj, 400 }, // D4
{ LabelDrvXObj::fileNames, LabelDrvXObj::open, LabelDrvXObj::close, kXObj, 400 }, // D4
- { ManiacBgXObj::fileNames, ManiacBgXObj::open, ManiacBgXObj::close, kXObj, 300 }, // D3
+ { ManiacBgXObj::fileNames, ManiacBgXObj::open, ManiacBgXObj::close, kXObj, 300 }, // D3
{ MemoryXObj::fileNames, MemoryXObj::open, MemoryXObj::close, kXObj, 300 }, // D3
- { Misc::fileNames, Misc::open, Misc::close, kXObj, 400 }, // D4
+ { Misc::fileNames, Misc::open, Misc::close, kXObj, 400 }, // D4
{ MiscX::fileNames, MiscX::open, MiscX::close, kXObj, 400 }, // D4
{ MoovXObj::fileNames, MoovXObj::open, MoovXObj::close, kXObj, 300 }, // D3
{ MoveMouseXObj::fileNames, MoveMouseXObj::open, MoveMouseXObj::close, kXObj, 400 }, // D4
@@ -210,7 +210,7 @@ static struct XLibProto {
{ PrefPath::fileNames, PrefPath::open, PrefPath::close, kXObj, 400 }, // D4
{ PrintOMaticXObj::fileNames, PrintOMaticXObj::open, PrintOMaticXObj::close, kXObj, 400 }, // D4
{ QTMovie::fileNames, QTMovie::open, QTMovie::close, kXObj, 400 }, // D4
- { Quicktime::fileNames, Quicktime::open, Quicktime::close, kXObj, 300 }, // D3
+ { Quicktime::fileNames, Quicktime::open, Quicktime::close, kXObj, 300 }, // D3
{ RearWindowXObj::fileNames, RearWindowXObj::open, RearWindowXObj::close, kXObj, 400 }, // D4
{ RegisterComponent::fileNames, RegisterComponent::open, RegisterComponent::close, kXObj, 400 }, // D4
{ SerialPortXObj::fileNames, SerialPortXObj::open, SerialPortXObj::close, kXObj, 200 }, // D2
Commit: 56f1eda8987549f95e678c2c1e82fa08f48c4edd
https://github.com/scummvm/scummvm/commit/56f1eda8987549f95e678c2c1e82fa08f48c4edd
Author: Roland van Laar (roland at rolandvanlaar.nl)
Date: 2023-08-30T13:42:53+02:00
Commit Message:
DIRECTOR: XOBJ: Register QTVR XOBJ
Changed paths:
engines/director/lingo/lingo-object.cpp
diff --git a/engines/director/lingo/lingo-object.cpp b/engines/director/lingo/lingo-object.cpp
index 61a26a804f9..c432003182f 100644
--- a/engines/director/lingo/lingo-object.cpp
+++ b/engines/director/lingo/lingo-object.cpp
@@ -77,6 +77,7 @@
#include "director/lingo/xlibs/prefpath.h"
#include "director/lingo/xlibs/printomatic.h"
#include "director/lingo/xlibs/qtmovie.h"
+#include "director/lingo/xlibs/qtvr.h"
#include "director/lingo/xlibs/quicktime.h"
#include "director/lingo/xlibs/registercomponent.h"
#include "director/lingo/xlibs/serialportxobj.h"
@@ -209,6 +210,7 @@ static struct XLibProto {
{ Porta::fileNames, Porta::open, Porta::close, kXObj, 300 }, // D3
{ PrefPath::fileNames, PrefPath::open, PrefPath::close, kXObj, 400 }, // D4
{ PrintOMaticXObj::fileNames, PrintOMaticXObj::open, PrintOMaticXObj::close, kXObj, 400 }, // D4
+ { QTVR::fileNames, QTVR::open, QTVR::close, kXObj, 400 }, // D4
{ QTMovie::fileNames, QTMovie::open, QTMovie::close, kXObj, 400 }, // D4
{ Quicktime::fileNames, Quicktime::open, Quicktime::close, kXObj, 300 }, // D3
{ RearWindowXObj::fileNames, RearWindowXObj::open, RearWindowXObj::close, kXObj, 400 }, // D4
More information about the Scummvm-git-logs
mailing list