diff options
author | Paul Gilbert | 2014-02-04 20:35:42 -0500 |
---|---|---|
committer | Paul Gilbert | 2014-02-04 20:35:42 -0500 |
commit | 49e3c9bcd20e12b0872e6e7b11416632c49190a7 (patch) | |
tree | abddaad2d2e60c2b903442a1b921ae50e19f50c6 /engines | |
parent | 07f57ac65076d5b303e308b154c9fdc0326dacc9 (diff) | |
download | scummvm-rg350-49e3c9bcd20e12b0872e6e7b11416632c49190a7.tar.gz scummvm-rg350-49e3c9bcd20e12b0872e6e7b11416632c49190a7.tar.bz2 scummvm-rg350-49e3c9bcd20e12b0872e6e7b11416632c49190a7.zip |
VOYEUR: Moved RL2Decoder::seek to be seekIntern
Diffstat (limited to 'engines')
-rw-r--r-- | engines/voyeur/animation.cpp | 4 | ||||
-rw-r--r-- | engines/voyeur/animation.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/engines/voyeur/animation.cpp b/engines/voyeur/animation.cpp index ca924d3b2b..7dc53b9e60 100644 --- a/engines/voyeur/animation.cpp +++ b/engines/voyeur/animation.cpp @@ -126,9 +126,9 @@ void RL2Decoder::readNextPacket() { } } -bool RL2Decoder::seek(const Audio::Timestamp &where) { +bool RL2Decoder::seekIntern(const Audio::Timestamp &where) { _soundFrameNumber = -1; - return VideoDecoder::seek(where); + return VideoDecoder::seekIntern(where); } void RL2Decoder::close() { diff --git a/engines/voyeur/animation.h b/engines/voyeur/animation.h index b8f0c57832..43dd6a02b1 100644 --- a/engines/voyeur/animation.h +++ b/engines/voyeur/animation.h @@ -168,7 +168,7 @@ public: virtual void readNextPacket(); virtual void close(); - virtual bool seek(const Audio::Timestamp &where); + virtual bool seekIntern(const Audio::Timestamp &time); const Common::List<Common::Rect> *getDirtyRects() const; void clearDirtyRects(); |