aboutsummaryrefslogtreecommitdiff
path: root/video/smk_decoder.cpp
diff options
context:
space:
mode:
authorMax Horn2011-02-09 00:12:58 +0000
committerMax Horn2011-02-09 00:12:58 +0000
commit805a5b2996ea331b4503b40e70ff85609a0f0883 (patch)
treecdca8dbb916f9b5286f09b829217263660d4df77 /video/smk_decoder.cpp
parent633b8ed27784814e264edd943797e0c6d44366db (diff)
downloadscummvm-rg350-805a5b2996ea331b4503b40e70ff85609a0f0883.tar.gz
scummvm-rg350-805a5b2996ea331b4503b40e70ff85609a0f0883.tar.bz2
scummvm-rg350-805a5b2996ea331b4503b40e70ff85609a0f0883.zip
VIDEO: In overloaded methods, invoke correct parent implementation
This should not cause any code behavior changes at this time, but if any of the intermediate VideoDecoder classes ever starts to overload stuff, this would become important. svn-id: r55841
Diffstat (limited to 'video/smk_decoder.cpp')
-rw-r--r--video/smk_decoder.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/video/smk_decoder.cpp b/video/smk_decoder.cpp
index 15f2b93948..d7412e99c3 100644
--- a/video/smk_decoder.cpp
+++ b/video/smk_decoder.cpp
@@ -367,7 +367,7 @@ uint32 SmackerDecoder::getElapsedTime() const {
if (_audioStream && _audioStarted)
return _mixer->getSoundElapsedTime(_audioHandle);
- return VideoDecoder::getElapsedTime();
+ return FixedRateVideoDecoder::getElapsedTime();
}
bool SmackerDecoder::loadStream(Common::SeekableReadStream *stream) {