aboutsummaryrefslogtreecommitdiff
path: root/engines/titanic/support/movie.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/titanic/support/movie.h')
-rw-r--r--engines/titanic/support/movie.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/engines/titanic/support/movie.h b/engines/titanic/support/movie.h
index d88c7b0be9..a871af6fc7 100644
--- a/engines/titanic/support/movie.h
+++ b/engines/titanic/support/movie.h
@@ -52,12 +52,12 @@ public:
/**
* Plays the movie
*/
- virtual void play(int v1, CVideoSurface *surface) = 0;
+ virtual void play(uint flags, CVideoSurface *surface) = 0;
/**
* Plays the movie
*/
- virtual void play(int v1, int v2, int v3, bool v4) = 0;
+ virtual void play(uint startFrame, uint endFrame, int v3, bool v4) = 0;
virtual void proc10() = 0;
virtual void proc11() = 0;
@@ -89,6 +89,7 @@ class OSMovie : public CMovie {
private:
Video::VideoDecoder *_video;
CVideoSurface *_videoSurface;
+ int _endFrame;
/**
* Decodes the next frame
@@ -104,12 +105,12 @@ public:
/**
* Plays the movie
*/
- virtual void play(int v1, CVideoSurface *surface);
+ virtual void play(uint flags, CVideoSurface *surface);
/**
* Plays the movie
*/
- virtual void play(int v1, int v2, int v3, bool v4);
+ virtual void play(uint startFrame, uint endFrame, int v3, bool v4);
virtual void proc10();
virtual void proc11();