Skip to content

Commit

Permalink
VOYEUR: Fix a couple of hidden overloaded virtual functions
Browse files Browse the repository at this point in the history
  • Loading branch information
Strangerke committed Mar 9, 2014
1 parent c64ba32 commit af67394
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions engines/voyeur/animation.h
Expand Up @@ -175,7 +175,7 @@ class RL2Decoder : public Video::VideoDecoder {
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; }

Expand All @@ -188,7 +188,7 @@ class RL2Decoder : public Video::VideoDecoder {
*/
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
Expand Down

0 comments on commit af67394

Please sign in to comment.