aboutsummaryrefslogtreecommitdiff
path: root/engines/pink/objects/actions/action_play_with_sfx.cpp
diff options
context:
space:
mode:
authorwhiterandrek2018-05-22 08:26:23 +0300
committerEugene Sandulenko2018-06-28 23:51:32 +0200
commitd3d7a9280081ad6711b8f5ae09100b4368768faf (patch)
tree3be5e2dffc799f73d487bd96468e9e97e3f44744 /engines/pink/objects/actions/action_play_with_sfx.cpp
parentf6dd0f2f49c1a33ab5563ae1c3a7f7cf272cc8eb (diff)
downloadscummvm-rg350-d3d7a9280081ad6711b8f5ae09100b4368768faf.tar.gz
scummvm-rg350-d3d7a9280081ad6711b8f5ae09100b4368768faf.tar.bz2
scummvm-rg350-d3d7a9280081ad6711b8f5ae09100b4368768faf.zip
PINK: fix compilation error
Diffstat (limited to 'engines/pink/objects/actions/action_play_with_sfx.cpp')
-rw-r--r--engines/pink/objects/actions/action_play_with_sfx.cpp2
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() {