aboutsummaryrefslogtreecommitdiff
path: root/engines/sword2/animation.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/sword2/animation.cpp')
-rw-r--r--engines/sword2/animation.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/sword2/animation.cpp b/engines/sword2/animation.cpp
index dd06456656..3c506c0dae 100644
--- a/engines/sword2/animation.cpp
+++ b/engines/sword2/animation.cpp
@@ -56,7 +56,7 @@ MoviePlayer::MoviePlayer(Sword2Engine *vm, Audio::Mixer *snd, OSystem *system, A
_black = 0;
}
-MoviePlayer:: ~MoviePlayer() {
+MoviePlayer::~MoviePlayer() {
delete _bgSoundHandle;
delete _decoder;
}
@@ -345,7 +345,7 @@ uint32 DXADecoderWithSound::getElapsedTime() const {
if (_mixer->isSoundHandleActive(*_bgSoundHandle))
return _mixer->getSoundElapsedTime(*_bgSoundHandle);
- return VideoDecoder::getElapsedTime();
+ return DXADecoder::getElapsedTime();
}
///////////////////////////////////////////////////////////////////////////////