aboutsummaryrefslogtreecommitdiff
path: root/engines/titanic/support
diff options
context:
space:
mode:
Diffstat (limited to 'engines/titanic/support')
-rw-r--r--engines/titanic/support/movie.cpp4
-rw-r--r--engines/titanic/support/movie.h10
2 files changed, 14 insertions, 0 deletions
diff --git a/engines/titanic/support/movie.cpp b/engines/titanic/support/movie.cpp
index cde3b22a8c..27bcb97ae9 100644
--- a/engines/titanic/support/movie.cpp
+++ b/engines/titanic/support/movie.cpp
@@ -87,6 +87,10 @@ void OSMovie::play(uint startFrame, uint endFrame, int v3, bool v4) {
_state = MOVIE_NONE;
}
+void OSMovie::play(const Rect &rect, int v1, int v2) {
+ warning("TODO: OSMovie::play 3");
+}
+
void OSMovie::playClip(const Rect &rect, uint startFrame, uint endFrame) {
warning("TODO: OSMovie::playClip");
}
diff --git a/engines/titanic/support/movie.h b/engines/titanic/support/movie.h
index 61dd4cf61d..da3285547d 100644
--- a/engines/titanic/support/movie.h
+++ b/engines/titanic/support/movie.h
@@ -60,6 +60,11 @@ public:
* Plays the movie
*/
virtual void play(uint startFrame, uint endFrame, int v3, bool v4) = 0;
+
+ /**
+ * Plays the movie
+ */
+ virtual void play(const Rect &rect, int v1, int v2) = 0;
/**
* Plays a sub-section of a movie
@@ -124,6 +129,11 @@ public:
virtual void play(uint startFrame, uint endFrame, int v3, bool v4);
/**
+ * Plays the movie
+ */
+ virtual void play(const Rect &rect, int v1, int v2);
+
+ /**
* Plays a sub-section of a movie
*/
virtual void playClip(const Rect &rect, uint startFrame, uint endFrame);