diff options
author | Max Horn | 2011-02-09 00:13:20 +0000 |
---|---|---|
committer | Max Horn | 2011-02-09 00:13:20 +0000 |
commit | 4cfa520dce72cf7805cf299f67c7faa9fc165922 (patch) | |
tree | 47148cb67d0d9d52e1ca5a48842ae0189283c1db /engines | |
parent | 805a5b2996ea331b4503b40e70ff85609a0f0883 (diff) | |
download | scummvm-rg350-4cfa520dce72cf7805cf299f67c7faa9fc165922.tar.gz scummvm-rg350-4cfa520dce72cf7805cf299f67c7faa9fc165922.tar.bz2 scummvm-rg350-4cfa520dce72cf7805cf299f67c7faa9fc165922.zip |
AGOS: Change private to protected, Instead of making subclasses friends
svn-id: r55842
Diffstat (limited to 'engines')
-rw-r--r-- | engines/agos/animation.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/engines/agos/animation.h b/engines/agos/animation.h index a61255b558..ed22ffea5b 100644 --- a/engines/agos/animation.h +++ b/engines/agos/animation.h @@ -37,9 +37,7 @@ namespace AGOS { class AGOSEngine_Feeble; class MoviePlayer { - friend class MoviePlayerDXA; - friend class MoviePlayerSMK; - +protected: AGOSEngine_Feeble *_vm; Audio::Mixer *_mixer; @@ -68,7 +66,7 @@ public: virtual void nextFrame() = 0; virtual void stopVideo() = 0; -private: +protected: virtual void handleNextFrame(); virtual bool processFrame() = 0; virtual void startSound() {} |