From e080a593378bcaf44a7b44c297dcb291a2b584a8 Mon Sep 17 00:00:00 2001 From: Max Horn Date: Mon, 9 Mar 2009 03:45:23 +0000 Subject: Renamed SMKPlayer -> SmackerDecoder and DXAPlayer -> DXADecoder, as well as some other tweaks svn-id: r39255 --- engines/agos/animation.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'engines/agos/animation.h') diff --git a/engines/agos/animation.h b/engines/agos/animation.h index a4fcbfc6d0..fcef94d4bf 100644 --- a/engines/agos/animation.h +++ b/engines/agos/animation.h @@ -61,9 +61,9 @@ public: virtual bool load() = 0; virtual void play(); - virtual void playVideo() {}; - virtual void nextFrame() {}; - virtual void stopVideo() {}; + virtual void playVideo() = 0; + virtual void nextFrame() = 0; + virtual void stopVideo() = 0; private: virtual void handleNextFrame(); @@ -71,7 +71,7 @@ private: virtual void startSound() {}; }; -class MoviePlayerDXA : public MoviePlayer, ::Graphics::DXAPlayer { +class MoviePlayerDXA : public MoviePlayer, ::Graphics::DXADecoder { static const char *_sequenceList[90]; uint8 _sequenceNum; public: @@ -90,7 +90,7 @@ private: void startSound(); }; -class MoviePlayerSMK : public MoviePlayer, ::Graphics::SMKPlayer { +class MoviePlayerSMK : public MoviePlayer, ::Graphics::SmackerDecoder { public: MoviePlayerSMK(AGOSEngine *vm, const char *name); -- cgit v1.2.3