diff options
author | Matthew Hoops | 2014-11-02 20:45:38 -0500 |
---|---|---|
committer | Matthew Hoops | 2014-11-02 20:45:38 -0500 |
commit | 124ac887fd491effed8db2b342f45d7c498c2d28 (patch) | |
tree | 85fb3558a021dd277c50f7dacc3d9e2c95986f8e /video/avi_decoder.h | |
parent | dfc3bcae20584b79f0b7ea2a6e4ccf0fed29797f (diff) | |
download | scummvm-rg350-124ac887fd491effed8db2b342f45d7c498c2d28.tar.gz scummvm-rg350-124ac887fd491effed8db2b342f45d7c498c2d28.tar.bz2 scummvm-rg350-124ac887fd491effed8db2b342f45d7c498c2d28.zip |
VIDEO: Make AVIAudioTrack::resetStream() virtual
In case a subclass (like Zork) needs to override it
Diffstat (limited to 'video/avi_decoder.h')
-rw-r--r-- | video/avi_decoder.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/video/avi_decoder.h b/video/avi_decoder.h index eef127155e..8941ff4e75 100644 --- a/video/avi_decoder.h +++ b/video/avi_decoder.h @@ -215,7 +215,7 @@ protected: virtual void queueSound(Common::SeekableReadStream *stream); Audio::Mixer::SoundType getSoundType() const { return _soundType; } void skipAudio(const Audio::Timestamp &time, const Audio::Timestamp &frameTime); - void resetStream(); + virtual void resetStream(); uint32 getCurChunk() const { return _curChunk; } void setCurChunk(uint32 chunk) { _curChunk = chunk; } |