diff options
Diffstat (limited to 'graphics/animation.cpp')
-rw-r--r-- | graphics/animation.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/graphics/animation.cpp b/graphics/animation.cpp index 77be43fdc5..9a237e5f72 100644 --- a/graphics/animation.cpp +++ b/graphics/animation.cpp @@ -30,7 +30,7 @@ namespace Graphics { -BaseAnimationState::BaseAnimationState(SoundMixer *snd, OSystem *sys, int width, int height) +BaseAnimationState::BaseAnimationState(Audio::Mixer *snd, OSystem *sys, int width, int height) : _movieWidth(width), _movieHeight(height), _snd(snd), _sys(sys) { #ifndef BACKEND_8BIT _colorTab = NULL; @@ -143,7 +143,7 @@ bool BaseAnimationState::init(const char *name, void *audioArg) { _bgSoundStream = createAudioStream(name, audioArg); if (_bgSoundStream != NULL) { - _snd->playInputStream(SoundMixer::kSFXSoundType, &_bgSound, _bgSoundStream, -1, 255, 0, false); + _snd->playInputStream(Audio::Mixer::kSFXSoundType, &_bgSound, _bgSoundStream, -1, 255, 0, false); } else { warning("Cutscene: Could not open Audio Track for %s", name); } |