aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Hoops2012-07-21 14:43:08 -0400
committerMatthew Hoops2012-07-21 14:43:08 -0400
commite74c306a7f3847128eb786c2d56f04d559e5a822 (patch)
treefeefe48a2f343a53a2a8925c9fe9c575726bfe74
parent10341d2b5722fb39cba39356c8596d857319a1ba (diff)
downloadscummvm-rg350-e74c306a7f3847128eb786c2d56f04d559e5a822.tar.gz
scummvm-rg350-e74c306a7f3847128eb786c2d56f04d559e5a822.tar.bz2
scummvm-rg350-e74c306a7f3847128eb786c2d56f04d559e5a822.zip
SCI: Switch SEQDecoder to using the new FixedDurationVideoTrack subclass
-rw-r--r--engines/sci/video/seq_decoder.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sci/video/seq_decoder.h b/engines/sci/video/seq_decoder.h
index ac801d3f19..75d7ce6c3d 100644
--- a/engines/sci/video/seq_decoder.h
+++ b/engines/sci/video/seq_decoder.h
@@ -48,7 +48,7 @@ public:
bool loadStream(Common::SeekableReadStream *stream);
private:
- class SEQVideoTrack : public FixedRateVideoTrack, public FixedLengthVideoTrack {
+ class SEQVideoTrack : public FixedDurationVideoTrack {
public:
SEQVideoTrack(Common::SeekableReadStream *stream, uint frameDelay);
~SEQVideoTrack();