diff options
-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(); |