diff options
Diffstat (limited to 'engines/pink/objects/actions/action_play_with_sfx.cpp')
-rw-r--r-- | engines/pink/objects/actions/action_play_with_sfx.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/pink/objects/actions/action_play_with_sfx.cpp b/engines/pink/objects/actions/action_play_with_sfx.cpp index 9cb850384e..62488ac302 100644 --- a/engines/pink/objects/actions/action_play_with_sfx.cpp +++ b/engines/pink/objects/actions/action_play_with_sfx.cpp @@ -95,7 +95,7 @@ void ActionSfx::play(GamePage *page) { _sound = page->loadSound(_sfxName); if (!_sound->isPlaying()) - _sound->play(Audio::Mixer::SoundType::kSFXSoundType, _volume, 0); + _sound->play(Audio::Mixer::kSFXSoundType, _volume, 0); } ActionSfx::~ActionSfx() { |