aboutsummaryrefslogtreecommitdiff
path: root/engines/titanic/support/movie.h
diff options
context:
space:
mode:
authorPaul Gilbert2016-07-09 12:07:12 -0400
committerPaul Gilbert2016-07-15 19:27:37 -0400
commit6c56d5aa11db1401bc0a2277776ec43128174bc2 (patch)
tree9d0cf718cb707e94fc8f0cbc02618672910176f0 /engines/titanic/support/movie.h
parentcc9bf88ed56a4c5fbb14c05d30395b1688f5ebe7 (diff)
downloadscummvm-rg350-6c56d5aa11db1401bc0a2277776ec43128174bc2.tar.gz
scummvm-rg350-6c56d5aa11db1401bc0a2277776ec43128174bc2.tar.bz2
scummvm-rg350-6c56d5aa11db1401bc0a2277776ec43128174bc2.zip
TITANIC: Named two remaining OSMovie virtual methods
Diffstat (limited to 'engines/titanic/support/movie.h')
-rw-r--r--engines/titanic/support/movie.h23
1 files changed, 18 insertions, 5 deletions
diff --git a/engines/titanic/support/movie.h b/engines/titanic/support/movie.h
index c839c882ca..8034bd4032 100644
--- a/engines/titanic/support/movie.h
+++ b/engines/titanic/support/movie.h
@@ -126,9 +126,16 @@ public:
* Get the current movie frame
*/
virtual int getFrame() const = 0;
-
- virtual void proc20() = 0;
- virtual int proc21() = 0;
+
+ /**
+ * Set the frame rate for the movie
+ */
+ virtual void setFrameRate(double rate) = 0;
+
+ /**
+ * Creates a duplicate of the frame info
+ */
+ virtual void *duplicateFrameInfo() const = 0;
/**
* Removes the movie from the list of currently playing movies
@@ -218,9 +225,15 @@ public:
*/
virtual void setSoundManager(CSoundManager *soundManager);
- virtual void proc20();
- virtual int proc21();
+ /**
+ * Set the frame rate for the movie
+ */
+ virtual void setFrameRate(double rate);
+ /**
+ * Creates a duplicate of the frame info
+ */
+ virtual void *duplicateFrameInfo() const;
};
} // End of namespace Titanic