aboutsummaryrefslogtreecommitdiff
path: root/engines/sword1/animation.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/sword1/animation.cpp')
-rw-r--r--engines/sword1/animation.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/sword1/animation.cpp b/engines/sword1/animation.cpp
index 60e9bb13fa..80e8573c44 100644
--- a/engines/sword1/animation.cpp
+++ b/engines/sword1/animation.cpp
@@ -73,7 +73,7 @@ MoviePlayer::MoviePlayer(SwordEngine *vm, Text *textMan, Audio::Mixer *snd, OSys
_decoderType = decoderType;
}
-MoviePlayer::~MoviePlayer(void) {
+MoviePlayer::~MoviePlayer() {
delete _decoder;
delete _bgSoundHandle;
}
@@ -145,7 +145,7 @@ bool MoviePlayer::load(uint32 id) {
return _decoder->loadFile(filename);
}
-void MoviePlayer::play(void) {
+void MoviePlayer::play() {
if (_bgSoundStream) {
_snd->playInputStream(Audio::Mixer::kSFXSoundType, _bgSoundHandle, _bgSoundStream);
}