aboutsummaryrefslogtreecommitdiff
path: root/engines/pegasus/movie.h
diff options
context:
space:
mode:
authorMatthew Hoops2011-10-08 00:13:14 -0400
committerMatthew Hoops2011-10-08 00:13:14 -0400
commit188d951cb4d040056098fc0d65ae8f9544a2fdfc (patch)
tree5b8a702a4bbc4cf0fcb769885f29932ea3d662c5 /engines/pegasus/movie.h
parent8a717d28d82b0cd48a9dfdacd7686d88abcc09f2 (diff)
downloadscummvm-rg350-188d951cb4d040056098fc0d65ae8f9544a2fdfc.tar.gz
scummvm-rg350-188d951cb4d040056098fc0d65ae8f9544a2fdfc.tar.bz2
scummvm-rg350-188d951cb4d040056098fc0d65ae8f9544a2fdfc.zip
PEGASUS: Remove unused movie direct draw mode
Diffstat (limited to 'engines/pegasus/movie.h')
-rwxr-xr-xengines/pegasus/movie.h13
1 files changed, 5 insertions, 8 deletions
diff --git a/engines/pegasus/movie.h b/engines/pegasus/movie.h
index 31b567407f..12d1af97d3 100755
--- a/engines/pegasus/movie.h
+++ b/engines/pegasus/movie.h
@@ -45,18 +45,16 @@ public:
virtual void initFromMovieFile(const Common::String &fileName, bool transparent = false);
bool isMovieValid() { return _video != 0; }
-
+
virtual void releaseMovie();
-
+
virtual void draw(const Common::Rect &);
virtual void redrawMovieWorld();
-
- void setDirectDraw(const bool);
-
+
virtual void setTime(const TimeValue, const TimeScale = 0);
-
+
virtual void setRate(const Common::Rational);
-
+
virtual void start();
virtual void stop();
virtual void resume();
@@ -74,7 +72,6 @@ public:
protected:
Video::SeekableVideoDecoder *_video;
- bool _directDraw;
Common::Rect _movieBox;
};