diff options
author | Strangerke | 2014-03-09 19:25:10 +0100 |
---|---|---|
committer | Strangerke | 2014-03-09 19:27:17 +0100 |
commit | af67394b44c4acaa56ff9a5d91475e75cefc8fa0 (patch) | |
tree | 4b8e984b806aab8816463032cee196aa5e58ab96 /engines/voyeur | |
parent | c64ba32678379bd252a42e334ca04e9e2b47ff5a (diff) | |
download | scummvm-rg350-af67394b44c4acaa56ff9a5d91475e75cefc8fa0.tar.gz scummvm-rg350-af67394b44c4acaa56ff9a5d91475e75cefc8fa0.tar.bz2 scummvm-rg350-af67394b44c4acaa56ff9a5d91475e75cefc8fa0.zip |
VOYEUR: Fix a couple of hidden overloaded virtual functions
Diffstat (limited to 'engines/voyeur')
-rw-r--r-- | engines/voyeur/animation.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/voyeur/animation.h b/engines/voyeur/animation.h index dcdbf36260..273fc01252 100644 --- a/engines/voyeur/animation.h +++ b/engines/voyeur/animation.h @@ -175,7 +175,7 @@ public: virtual void close(); bool loadStream(Common::SeekableReadStream *stream); - bool loadFile(const Common::String &file, bool palFlag = false); + virtual bool loadFile(const Common::String &file, bool palFlag = false); bool loadVideo(int videoId); int getPaletteCount() const { return _header._colorCount; } @@ -188,7 +188,7 @@ public: */ void play(VoyeurEngine *vm, int resourceOffset = 0, byte *frames = NULL, byte *imgPos = NULL); RL2VideoTrack *getVideoTrack() { return _videoTrack; } - RL2AudioTrack *getAudioTrack() { return _audioTrack; } + virtual RL2AudioTrack *getAudioTrack() { return _audioTrack; } }; } // End of namespace Voyeur |