aboutsummaryrefslogtreecommitdiff
path: root/engines/titanic/support/video_surface.cpp
diff options
context:
space:
mode:
authorPaul Gilbert2016-05-04 07:03:13 -0400
committerPaul Gilbert2016-07-10 16:38:18 -0400
commit4963c9f50b53cbd663c18387d8606ad4623cca34 (patch)
tree48e9bed889ba74ba5754ca29521d50e854a3380a /engines/titanic/support/video_surface.cpp
parent9ca8e2a9285708d03cd64fbfe7f28c97edb145b2 (diff)
downloadscummvm-rg350-4963c9f50b53cbd663c18387d8606ad4623cca34.tar.gz
scummvm-rg350-4963c9f50b53cbd663c18387d8606ad4623cca34.tar.bz2
scummvm-rg350-4963c9f50b53cbd663c18387d8606ad4623cca34.zip
TITANIC: Implement CMovieEvent & CMovieRangeInfo
Diffstat (limited to 'engines/titanic/support/video_surface.cpp')
-rw-r--r--engines/titanic/support/video_surface.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/engines/titanic/support/video_surface.cpp b/engines/titanic/support/video_surface.cpp
index e6b2fa7958..813138da4a 100644
--- a/engines/titanic/support/video_surface.cpp
+++ b/engines/titanic/support/video_surface.cpp
@@ -402,6 +402,12 @@ void OSVideoSurface::playMovie(uint startFrame, uint endFrame, int v3, bool v4)
}
}
+void OSVideoSurface::proc35(const CString &name, int flags, CGameObject *owner) {
+ if (loadIfReady() && _movie) {
+ _movie->proc12(name, flags, owner);
+ }
+}
+
void OSVideoSurface::stopMovie() {
if (_movie)
_movie->stop();