aboutsummaryrefslogtreecommitdiff
path: root/engines/pink/objects/actions/action_sound.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/pink/objects/actions/action_sound.cpp')
-rw-r--r--engines/pink/objects/actions/action_sound.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/engines/pink/objects/actions/action_sound.cpp b/engines/pink/objects/actions/action_sound.cpp
index f389f97a1a..38f8687d33 100644
--- a/engines/pink/objects/actions/action_sound.cpp
+++ b/engines/pink/objects/actions/action_sound.cpp
@@ -56,9 +56,12 @@ void ActionSound::start(bool unk) {
_sound->play(soundType, _volume, _isLoop);
if (_isLoop)
_actor->endAction();
+
+ debug("Actor %s has now ActionSound %s", _actor->getName().c_str(), _name.c_str());
}
void ActionSound::end() {
+ debug("ActionSound %s of Actor %s is ended", _name.c_str(), _actor->getName().c_str());
_sound->stop();
delete _sound;
_sound = nullptr;